VirtualBox

Changeset 98262 in vbox for trunk/src/VBox/Main/src-all


Ignore:
Timestamp:
Jan 24, 2023 1:42:14 AM (23 months ago)
Author:
vboxsync
Message:

Main: rc() -> hrc()/vrc(). bugref:10223

Location:
trunk/src/VBox/Main/src-all
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-all/EventImpl.cpp

    r98103 r98262  
    15541554
    15551555    AutoCaller autoCaller(this);
    1556     if (FAILED(autoCaller.rc()))
    1557         return autoCaller.rc();
     1556    if (FAILED(autoCaller.hrc()))
     1557        return autoCaller.hrc();
    15581558
    15591559    ComPtr<IEventListener> proxy;
     
    15811581
    15821582    AutoCaller autoCaller(this);
    1583     if (FAILED(autoCaller.rc()))
    1584         return autoCaller.rc();
     1583    if (FAILED(autoCaller.hrc()))
     1584        return autoCaller.hrc();
    15851585
    15861586    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    16111611
    16121612    AutoCaller autoCaller(this);
    1613     if (FAILED(autoCaller.rc()))
    1614         return autoCaller.rc();
     1613    if (FAILED(autoCaller.hrc()))
     1614        return autoCaller.hrc();
    16151615
    16161616    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
  • trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp

    r98103 r98262  
    25832583
    25842584    AutoCaller autoCaller(this);
    2585     HRESULT hrc = autoCaller.rc();
     2585    HRESULT hrc = autoCaller.hrc();
    25862586    if (SUCCEEDED(hrc))
    25872587    {
     
    30893089
    30903090    AutoCaller autoCaller(this);
    3091     HRESULT hrc = autoCaller.rc();
     3091    HRESULT hrc = autoCaller.hrc();
    30923092    if (SUCCEEDED(hrc))
    30933093    {
     
    32263226
    32273227    AutoCaller autoCaller(this);
    3228     HRESULT hrc = autoCaller.rc();
     3228    HRESULT hrc = autoCaller.hrc();
    32293229    if (SUCCEEDED(hrc))
    32303230    {
     
    33573357{
    33583358    AutoCaller autoCaller(this);
    3359     HRESULT hrc = autoCaller.rc();
     3359    HRESULT hrc = autoCaller.hrc();
    33603360    if (FAILED(hrc))
    33613361        return;
     
    33923392
    33933393    AutoCaller autoCaller(this);
    3394     HRESULT hrc = autoCaller.rc();
     3394    HRESULT hrc = autoCaller.hrc();
    33953395    if (SUCCEEDED(hrc))
    33963396    {
     
    34323432{
    34333433    AutoCaller autoCaller(this);
    3434     HRESULT hrc = autoCaller.rc();
     3434    HRESULT hrc = autoCaller.hrc();
    34353435    if (FAILED(hrc))
    34363436        return;
     
    34593459{
    34603460    AutoCaller autoCaller(this);
    3461     HRESULT hrc = autoCaller.rc();
     3461    HRESULT hrc = autoCaller.hrc();
    34623462    if (FAILED(hrc))
    34633463        return;
     
    34853485{
    34863486    AutoCaller autoCaller(this);
    3487     HRESULT hrc = autoCaller.rc();
     3487    HRESULT hrc = autoCaller.hrc();
    34883488    if (FAILED(hrc))
    34893489        return Global::vboxStatusCodeFromCOM(hrc);
     
    35153515{
    35163516    AutoCaller autoCaller(this);
    3517     HRESULT hrc = autoCaller.rc();
     3517    HRESULT hrc = autoCaller.hrc();
    35183518    if (FAILED(hrc))
    35193519        return Global::vboxStatusCodeFromCOM(hrc);
     
    35433543{
    35443544    AutoCaller autoCaller(this);
    3545     HRESULT hrc = autoCaller.rc();
     3545    HRESULT hrc = autoCaller.hrc();
    35463546    if (FAILED(hrc))
    35473547        return;
     
    35663566{
    35673567    AutoCaller autoCaller(this);
    3568     HRESULT hrc = autoCaller.rc();
     3568    HRESULT hrc = autoCaller.hrc();
    35693569    if (SUCCEEDED(hrc))
    35703570    {
     
    35953595{
    35963596    AutoCaller autoCaller(this);
    3597     HRESULT hrc = autoCaller.rc();
     3597    HRESULT hrc = autoCaller.hrc();
    35983598    if (SUCCEEDED(hrc))
    35993599    {
     
    36213621{
    36223622    AutoCaller autoCaller(this);
    3623     HRESULT hrc = autoCaller.rc();
     3623    HRESULT hrc = autoCaller.hrc();
    36243624    if (SUCCEEDED(hrc))
    36253625    {
     
    36503650{
    36513651    AutoCaller autoCaller(this);
    3652     HRESULT hrc = autoCaller.rc();
     3652    HRESULT hrc = autoCaller.hrc();
    36533653    if (SUCCEEDED(hrc))
    36543654    {
     
    36793679{
    36803680    AutoCaller autoCaller(this);
    3681     HRESULT hrc = autoCaller.rc();
     3681    HRESULT hrc = autoCaller.hrc();
    36823682    if (SUCCEEDED(hrc))
    36833683    {
     
    37073707
    37083708    AutoCaller autoCaller(this);
    3709     HRESULT hrc = autoCaller.rc();
     3709    HRESULT hrc = autoCaller.hrc();
    37103710    if (SUCCEEDED(hrc))
    37113711    {
     
    37393739
    37403740    AutoCaller autoCaller(this);
    3741     HRESULT hrc = autoCaller.rc();
     3741    HRESULT hrc = autoCaller.hrc();
    37423742    if (SUCCEEDED(hrc))
    37433743    {
     
    37673767{
    37683768    AutoCaller autoCaller(this);
    3769     HRESULT hrc = autoCaller.rc();
     3769    HRESULT hrc = autoCaller.hrc();
    37703770    if (FAILED(hrc))
    37713771        return false;
     
    37833783{
    37843784    AutoCaller autoCaller(this);
    3785     HRESULT hrc = autoCaller.rc();
     3785    HRESULT hrc = autoCaller.hrc();
    37863786    if (FAILED(hrc))
    37873787        return;
     
    38303830{
    38313831    AutoCaller autoCaller(this);
    3832     HRESULT hrc = autoCaller.rc();
     3832    HRESULT hrc = autoCaller.hrc();
    38333833    if (FAILED(hrc))
    38343834        return 0;
  • trunk/src/VBox/Main/src-all/NvramStoreImpl.cpp

    r98103 r98262  
    382382    /* the machine needs to be mutable */
    383383    AutoMutableStateDependency adep(m->pParent);
    384     if (FAILED(adep.rc())) return adep.rc();
     384    if (FAILED(adep.hrc())) return adep.hrc();
    385385
    386386    Utf8Str strPath;
     
    467467    /* the machine needs to be mutable */
    468468    AutoMutableStateDependency adep(m->pParent);
    469     if (FAILED(adep.rc())) return adep.rc();
     469    if (FAILED(adep.hrc())) return adep.hrc();
    470470
    471471    Utf8Str strPath;
     
    988988    /* sanity */
    989989    AutoCaller autoCaller(this);
    990     AssertComRCReturnRC(autoCaller.rc());
     990    AssertComRCReturnRC(autoCaller.hrc());
    991991
    992992    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    10121012{
    10131013    AutoCaller autoCaller(this);
    1014     AssertComRCReturnRC(autoCaller.rc());
     1014    AssertComRCReturnRC(autoCaller.hrc());
    10151015
    10161016    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    10261026{
    10271027    AutoCaller autoCaller(this);
    1028     AssertComRCReturn(autoCaller.rc(), VERR_INVALID_STATE);
     1028    AssertComRCReturn(autoCaller.hrc(), VERR_INVALID_STATE);
    10291029
    10301030    /* keep only required password */
     
    10401040{
    10411041    AutoCaller autoCaller(this);
    1042     AssertComRCReturn(autoCaller.rc(), VERR_INVALID_STATE);
     1042    AssertComRCReturn(autoCaller.hrc(), VERR_INVALID_STATE);
    10431043
    10441044    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    10501050{
    10511051    AutoCaller autoCaller(this);
    1052     AssertComRCReturn(autoCaller.rc(), VERR_INVALID_STATE);
     1052    AssertComRCReturn(autoCaller.hrc(), VERR_INVALID_STATE);
    10531053
    10541054    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    10641064    /* the machine needs to be mutable */
    10651065    AutoMutableStateDependency adep(m->pParent);
    1066     if (FAILED(adep.rc())) return adep.rc();
     1066    if (FAILED(adep.hrc())) return adep.hrc();
    10671067
    10681068    AutoWriteLock wlock(this COMMA_LOCKVAL_SRC_POS);
     
    11121112{
    11131113    AutoCaller autoCaller(this);
    1114     AssertComRCReturnRC(autoCaller.rc());
     1114    AssertComRCReturnRC(autoCaller.hrc());
    11151115
    11161116    AutoReadLock mlock(m->pParent COMMA_LOCKVAL_SRC_POS);
     
    11431143{
    11441144    AutoCaller autoCaller(this);
    1145     AssertComRCReturnRC(autoCaller.rc());
     1145    AssertComRCReturnRC(autoCaller.hrc());
    11461146
    11471147    AutoWriteLock wlock(this COMMA_LOCKVAL_SRC_POS);
     
    12461246    /* sanity */
    12471247    AutoCaller autoCaller(this);
    1248     AssertComRCReturnVoid(autoCaller.rc());
     1248    AssertComRCReturnVoid(autoCaller.hrc());
    12491249
    12501250    AutoReadLock mlock(m->pParent COMMA_LOCKVAL_SRC_POS);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette