VirtualBox

Changeset 94947 in vbox


Ignore:
Timestamp:
May 9, 2022 10:43:47 AM (3 years ago)
Author:
vboxsync
Message:

Main/src-client/ConsoleImpl2.cpp: Adjust to the new rules wrt. to rc -> hrc,vrc usage, ​bugref:10223

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r94893 r94947  
    223223     */
    224224    *pfGetKeyFromRealSMC = true;
    225     int rc = VINF_SUCCESS;
     225    int vrc = VINF_SUCCESS;
    226226
    227227#else
     
    256256    }
    257257
    258     int rc = VINF_SUCCESS;
     258    int vrc = VINF_SUCCESS;
    259259#endif
    260260
    261     return rc;
     261    return vrc;
    262262}
    263263
     
    784784    ComPtr<IMachine> pMachine = i_machine();
    785785
    786     int             rc;
     786    int             vrc;
    787787    HRESULT         hrc;
    788788    Utf8Str         strTmp;
     
    811811    hrc = pMachine->COMGETTER(HardwareUUID)(bstr.asOutParam());                             H();
    812812    RTUUID HardwareUuid;
    813     rc = RTUuidFromUtf16(&HardwareUuid, bstr.raw());
    814     AssertRCReturn(rc, rc);
     813    vrc = RTUuidFromUtf16(&HardwareUuid, bstr.raw());
     814    AssertRCReturn(vrc, vrc);
    815815
    816816    ULONG cRamMBs;
     
    14491449        // VBoxC is located in the components subdirectory
    14501450        char szPathVBoxC[RTPATH_MAX];
    1451         rc = RTPathAppPrivateArch(szPathVBoxC, RTPATH_MAX - sizeof("/components/VBoxC"));   AssertRC(rc);
     1451        vrc = RTPathAppPrivateArch(szPathVBoxC, RTPATH_MAX - sizeof("/components/VBoxC"));  AssertRC(vrc);
    14521452        strcat(szPathVBoxC, "/components/VBoxC");
    14531453        InsertConfigString(pMod,   "Path",  szPathVBoxC);
     
    16971697            bool fGetKeyFromRealSMC;
    16981698            Utf8Str strKey;
    1699             rc = getSmcDeviceKey(virtualBox, pMachine, &strKey, &fGetKeyFromRealSMC);
    1700             AssertRCReturn(rc, rc);
     1699            vrc = getSmcDeviceKey(virtualBox, pMachine, &strKey, &fGetKeyFromRealSMC);
     1700            AssertRCReturn(vrc, vrc);
    17011701
    17021702            if (!fGetKeyFromRealSMC)
     
    18431843#endif
    18441844            case GraphicsControllerType_VBoxVGA:
    1845                 rc = i_configGraphicsController(pDevices, enmGraphicsController, pBusMgr, pMachine, pGraphicsAdapter, biosSettings,
    1846                                                 RT_BOOL(fHMEnabled));
    1847                 if (FAILED(rc))
    1848                     return rc;
     1845                vrc = i_configGraphicsController(pDevices, enmGraphicsController, pBusMgr, pMachine, pGraphicsAdapter, biosSettings,
     1846                                                 RT_BOOL(fHMEnabled));
     1847                if (FAILED(vrc))
     1848                    return vrc;
    18491849                break;
    18501850            default:
     
    19461946#else
    19471947            Utf8Str efiRomFile;
    1948             rc = findEfiRom(virtualBox, eFwType, &efiRomFile);
    1949             AssertRCReturn(rc, rc);
     1948            vrc = findEfiRom(virtualBox, eFwType, &efiRomFile);
     1949            AssertRCReturn(vrc, vrc);
    19501950            const char *pszEfiRomFile = efiRomFile.c_str();
    19511951#endif
     
    20602060            {
    20612061                USBControllerType_T enmCtrlType;
    2062                 rc = usbCtrls[i]->COMGETTER(Type)(&enmCtrlType);                                   H();
     2062                vrc = usbCtrls[i]->COMGETTER(Type)(&enmCtrlType);                                  H();
    20632063                if (enmCtrlType == USBControllerType_OHCI)
    20642064                {
     
    20902090            {
    20912091                USBControllerType_T enmCtrlType;
    2092                 rc = usbCtrls[i]->COMGETTER(Type)(&enmCtrlType);                                   H();
     2092                vrc = usbCtrls[i]->COMGETTER(Type)(&enmCtrlType);                                  H();
    20932093
    20942094                if (enmCtrlType == USBControllerType_OHCI)
     
    25922592            {
    25932593                IMediumAttachment *pMediumAtt = atts[j];
    2594                 rc = i_configMediumAttachment(pszCtrlDev,
    2595                                               ulInstance,
    2596                                               enmBus,
    2597                                               !!fUseHostIOCache,
    2598                                               enmCtrlType == StorageControllerType_NVMe ? false : !!fBuiltinIOCache,
    2599                                               fInsertDiskIntegrityDrv,
    2600                                               false /* fSetupMerge */,
    2601                                               0 /* uMergeSource */,
    2602                                               0 /* uMergeTarget */,
    2603                                               pMediumAtt,
    2604                                               mMachineState,
    2605                                               NULL /* phrc */,
    2606                                               false /* fAttachDetach */,
    2607                                               false /* fForceUnmount */,
    2608                                               false /* fHotplug */,
    2609                                               pUVM,
    2610                                               pVMM,
    2611                                               paLedDevType,
    2612                                               NULL /* ppLunL0 */);
    2613                 if (RT_FAILURE(rc))
    2614                     return rc;
     2594                vrc = i_configMediumAttachment(pszCtrlDev,
     2595                                               ulInstance,
     2596                                               enmBus,
     2597                                               !!fUseHostIOCache,
     2598                                               enmCtrlType == StorageControllerType_NVMe ? false : !!fBuiltinIOCache,
     2599                                               fInsertDiskIntegrityDrv,
     2600                                               false /* fSetupMerge */,
     2601                                               0 /* uMergeSource */,
     2602                                               0 /* uMergeTarget */,
     2603                                               pMediumAtt,
     2604                                               mMachineState,
     2605                                               NULL /* phrc */,
     2606                                               false /* fAttachDetach */,
     2607                                               false /* fForceUnmount */,
     2608                                               false /* fHotplug */,
     2609                                               pUVM,
     2610                                               pVMM,
     2611                                               paLedDevType,
     2612                                               NULL /* ppLunL0 */);
     2613                if (RT_FAILURE(vrc))
     2614                    return vrc;
    26152615            }
    26162616            H();
     
    28562856             */
    28572857            bool fIgnoreConnectFailure = mMachineState == MachineState_Restoring;
    2858             rc = i_configNetwork(pszAdapterName,
    2859                                  uInstance,
    2860                                  0,
    2861                                  networkAdapter,
    2862                                  pCfg,
    2863                                  pLunL0,
    2864                                  pInst,
    2865                                  false /*fAttachDetach*/,
    2866                                  fIgnoreConnectFailure,
    2867                                  pUVM,
    2868                                  pVMM);
    2869             if (RT_FAILURE(rc))
    2870                 return rc;
     2858            vrc = i_configNetwork(pszAdapterName,
     2859                                  uInstance,
     2860                                  0,
     2861                                  networkAdapter,
     2862                                  pCfg,
     2863                                  pLunL0,
     2864                                  pInst,
     2865                                  false /*fAttachDetach*/,
     2866                                  fIgnoreConnectFailure,
     2867                                  pUVM,
     2868                                  pVMM);
     2869            if (RT_FAILURE(vrc))
     2870                return vrc;
    28712871        }
    28722872
     
    29542954            if (eHostMode != PortMode_Disconnected)
    29552955            {
    2956                 rc = i_configSerialPort(pInst, eHostMode, Utf8Str(bstr).c_str(), RT_BOOL(fServer));
    2957                 if (RT_FAILURE(rc))
    2958                     return rc;
     2956                vrc = i_configSerialPort(pInst, eHostMode, Utf8Str(bstr).c_str(), RT_BOOL(fServer));
     2957                if (RT_FAILURE(vrc))
     2958                    return vrc;
    29592959            }
    29602960        }
     
    32733273            AudioDriverCfg DrvCfgVRDE(pszAudioDevice, 0 /* Instance */, idxAudioLun, "AudioVRDE",
    32743274                                      !!fAudioEnabledIn, !!fAudioEnabledOut);
    3275             rc = mAudioVRDE->InitializeConfig(&DrvCfgVRDE);
    3276             AssertRCStmt(rc, throw ConfigError(__FUNCTION__, rc, "mAudioVRDE->InitializeConfig failed"));
     3275            vrc = mAudioVRDE->InitializeConfig(&DrvCfgVRDE);
     3276            AssertRCStmt(vrc, throw ConfigError(__FUNCTION__, vrc, "mAudioVRDE->InitializeConfig failed"));
    32773277            idxAudioLun++;
    32783278#endif
     
    32843284            AudioDriverCfg DrvCfgVideoRec(pszAudioDevice, 0 /* Instance */, idxAudioLun, "AudioVideoRec",
    32853285                                          false /*a_fEnabledIn*/, true /*a_fEnabledOut*/);
    3286             rc = mRecording.mAudioRec->InitializeConfig(&DrvCfgVideoRec);
    3287             AssertRCStmt(rc, throw ConfigError(__FUNCTION__, rc, "Recording.mAudioRec->InitializeConfig failed"));
     3286            vrc = mRecording.mAudioRec->InitializeConfig(&DrvCfgVideoRec);
     3287            AssertRCStmt(vrc, throw ConfigError(__FUNCTION__, vrc, "Recording.mAudioRec->InitializeConfig failed"));
    32883288            idxAudioLun++;
    32893289#endif
     
    33593359                }
    33603360
    3361                 rc = RTLogGroupSettings(RTLogRelGetDefaultInstance(), strGroups.c_str());
    3362                 if (RT_FAILURE(rc))
    3363                     LogRel(("Audio: Setting debug logging failed, rc=%Rrc\n", rc));
     3361                vrc = RTLogGroupSettings(RTLogRelGetDefaultInstance(), strGroups.c_str());
     3362                if (RT_FAILURE(vrc))
     3363                    LogRel(("Audio: Setting debug logging failed, vrc=%Rrc\n", vrc));
    33643364            }
    33653365        }
     
    33783378
    33793379            /* Load the service */
    3380             rc = pVMMDev->hgcmLoadService("VBoxSharedClipboard", "VBoxSharedClipboard");
    3381             if (RT_SUCCESS(rc))
     3380            vrc = pVMMDev->hgcmLoadService("VBoxSharedClipboard", "VBoxSharedClipboard");
     3381            if (RT_SUCCESS(vrc))
    33823382            {
    33833383                LogRel(("Shared Clipboard: Service loaded\n"));
    33843384
    33853385                /* Set initial clipboard mode. */
    3386                 rc = i_changeClipboardMode(enmClipboardMode);
    3387                 AssertLogRelMsg(RT_SUCCESS(rc), ("Shared Clipboard: Failed to set initial clipboard mode (%d): rc=%Rrc\n",
    3388                                                  enmClipboardMode, rc));
     3386                vrc = i_changeClipboardMode(enmClipboardMode);
     3387                AssertLogRelMsg(RT_SUCCESS(vrc), ("Shared Clipboard: Failed to set initial clipboard mode (%d): vrc=%Rrc\n",
     3388                                                 enmClipboardMode, vrc));
    33893389
    33903390                /* Setup the service. */
    33913391                VBOXHGCMSVCPARM parm;
    33923392                HGCMSvcSetU32(&parm, !i_useHostClipboard());
    3393                 rc = pVMMDev->hgcmHostCall("VBoxSharedClipboard", VBOX_SHCL_HOST_FN_SET_HEADLESS, 1, &parm);
    3394                 AssertLogRelMsg(RT_SUCCESS(rc), ("Shared Clipboard: Failed to set initial headless mode (%RTbool): rc=%Rrc\n",
    3395                                                  !i_useHostClipboard(), rc));
     3393                vrc = pVMMDev->hgcmHostCall("VBoxSharedClipboard", VBOX_SHCL_HOST_FN_SET_HEADLESS, 1, &parm);
     3394                AssertLogRelMsg(RT_SUCCESS(vrc), ("Shared Clipboard: Failed to set initial headless mode (%RTbool): vrc=%Rrc\n",
     3395                                                 !i_useHostClipboard(), vrc));
    33963396
    33973397# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
    3398                 rc = i_changeClipboardFileTransferMode(RT_BOOL(fFileTransfersEnabled));
    3399                 AssertLogRelMsg(RT_SUCCESS(rc), ("Shared Clipboard: Failed to set initial file transfers mode (%u): rc=%Rrc\n",
    3400                                                  fFileTransfersEnabled, rc));
     3398                vrc = i_changeClipboardFileTransferMode(RT_BOOL(fFileTransfersEnabled));
     3399                AssertLogRelMsg(RT_SUCCESS(vrc), ("Shared Clipboard: Failed to set initial file transfers mode (%u): vrc=%Rrc\n",
     3400                                                 fFileTransfersEnabled, vrc));
    34013401
    34023402                /** @todo Register area callbacks? (See also deregistration todo in Console::i_powerDown.) */
     
    34043404            }
    34053405            else
    3406                 LogRel(("Shared Clipboard: Not available, rc=%Rrc\n", rc));
    3407             rc = VINF_SUCCESS;  /* None of the potential failures above are fatal. */
     3406                LogRel(("Shared Clipboard: Not available, vrc=%Rrc\n", vrc));
     3407            vrc = VINF_SUCCESS;  /* None of the potential failures above are fatal. */
    34083408        }
    34093409#endif /* VBOX_WITH_SHARED_CLIPBOARD */
     
    34203420                && value == "1")
    34213421            {
    3422                 rc = pVMMDev->hgcmLoadService("VBoxHostChannel", "VBoxHostChannel");
    3423                 if (RT_FAILURE(rc))
    3424                 {
    3425                     LogRel(("VBoxHostChannel is not available, rc=%Rrc\n", rc));
     3422                vrc = pVMMDev->hgcmLoadService("VBoxHostChannel", "VBoxHostChannel");
     3423                if (RT_FAILURE(vrc))
     3424                {
     3425                    LogRel(("VBoxHostChannel is not available, vrc=%Rrc\n", vrc));
    34263426                    /* That is not a fatal failure. */
    3427                     rc = VINF_SUCCESS;
     3427                    vrc = VINF_SUCCESS;
    34283428                }
    34293429            }
     
    34393439
    34403440            /* Load the service */
    3441             rc = pVMMDev->hgcmLoadService("VBoxDragAndDropSvc", "VBoxDragAndDropSvc");
    3442             if (RT_FAILURE(rc))
    3443             {
    3444                 LogRel(("Drag and drop service is not available, rc=%Rrc\n", rc));
     3441            vrc = pVMMDev->hgcmLoadService("VBoxDragAndDropSvc", "VBoxDragAndDropSvc");
     3442            if (RT_FAILURE(vrc))
     3443            {
     3444                LogRel(("Drag and drop service is not available, vrc=%Rrc\n", vrc));
    34453445                /* That is not a fatal failure. */
    3446                 rc = VINF_SUCCESS;
     3446                vrc = VINF_SUCCESS;
    34473447            }
    34483448            else
    34493449            {
    3450                 rc = HGCMHostRegisterServiceExtension(&m_hHgcmSvcExtDragAndDrop, "VBoxDragAndDropSvc",
    3451                                                       &GuestDnD::notifyDnDDispatcher,
    3452                                                       GuestDnDInst());
    3453                 if (RT_FAILURE(rc))
    3454                     Log(("Cannot register VBoxDragAndDropSvc extension, rc=%Rrc\n", rc));
     3450                vrc = HGCMHostRegisterServiceExtension(&m_hHgcmSvcExtDragAndDrop, "VBoxDragAndDropSvc",
     3451                                                       &GuestDnD::notifyDnDDispatcher,
     3452                                                       GuestDnDInst());
     3453                if (RT_FAILURE(vrc))
     3454                    Log(("Cannot register VBoxDragAndDropSvc extension, vrc=%Rrc\n", vrc));
    34553455                else
    34563456                {
    34573457                    LogRel(("Drag and drop service loaded\n"));
    3458                     rc = i_changeDnDMode(enmMode);
     3458                    vrc = i_changeDnDMode(enmMode);
    34593459                }
    34603460            }
     
    37023702
    37033703            char szHomeDir[RTPATH_MAX + 1];
    3704             int rc2 = RTPathUserHome(szHomeDir, sizeof(szHomeDir) - 1);
    3705             if (RT_FAILURE(rc2))
     3704            int vrc2 = RTPathUserHome(szHomeDir, sizeof(szHomeDir) - 1);
     3705            if (RT_FAILURE(vrc2))
    37063706                szHomeDir[0] = '\0';
    37073707            RTPathEnsureTrailingSeparator(szHomeDir, sizeof(szHomeDir));
     
    37743774     * Call the extension pack hooks if everything went well thus far.
    37753775     */
    3776     if (RT_SUCCESS(rc))
     3776    if (RT_SUCCESS(vrc))
    37773777    {
    37783778        pAlock->release();
    3779         rc = mptrExtPackManager->i_callAllVmConfigureVmmHooks(this, pVM, pVMM);
     3779        vrc = mptrExtPackManager->i_callAllVmConfigureVmmHooks(this, pVM, pVMM);
    37803780        pAlock->acquire();
    37813781    }
     
    37853785     * Apply the CFGM overlay.
    37863786     */
    3787     if (RT_SUCCESS(rc))
    3788         rc = i_configCfgmOverlay(pRoot, virtualBox, pMachine);
     3787    if (RT_SUCCESS(vrc))
     3788        vrc = i_configCfgmOverlay(pRoot, virtualBox, pMachine);
    37893789
    37903790    /*
    37913791     * Dump all extradata API settings tweaks, both global and per VM.
    37923792     */
    3793     if (RT_SUCCESS(rc))
    3794         rc = i_configDumpAPISettingsTweaks(virtualBox, pMachine);
     3793    if (RT_SUCCESS(vrc))
     3794        vrc = i_configDumpAPISettingsTweaks(virtualBox, pMachine);
    37953795
    37963796#undef H
     
    38013801     * Register VM state change handler.
    38023802     */
    3803     int rc2 = pVMM->pfnVMR3AtStateRegister(pUVM, Console::i_vmstateChangeCallback, this);
    3804     AssertRC(rc2);
    3805     if (RT_SUCCESS(rc))
    3806         rc = rc2;
     3803    int vrc2 = pVMM->pfnVMR3AtStateRegister(pUVM, Console::i_vmstateChangeCallback, this);
     3804    AssertRC(vrc2);
     3805    if (RT_SUCCESS(vrc))
     3806        vrc = vrc2;
    38073807
    38083808    /*
    38093809     * Register VM runtime error handler.
    38103810     */
    3811     rc2 = pVMM->pfnVMR3AtRuntimeErrorRegister(pUVM, Console::i_atVMRuntimeErrorCallback, this);
    3812     AssertRC(rc2);
    3813     if (RT_SUCCESS(rc))
    3814         rc = rc2;
     3811    vrc2 = pVMM->pfnVMR3AtRuntimeErrorRegister(pUVM, Console::i_atVMRuntimeErrorCallback, this);
     3812    AssertRC(vrc2);
     3813    if (RT_SUCCESS(vrc))
     3814        vrc = vrc2;
    38153815
    38163816    pAlock->acquire();
    38173817
    3818     LogFlowFunc(("vrc = %Rrc\n", rc));
     3818    LogFlowFunc(("vrc = %Rrc\n", vrc));
    38193819    LogFlowFuncLeave();
    38203820
    3821     return rc;
     3821    return vrc;
    38223822}
    38233823
     
    39663966     * extra data to support global settings with local overrides.
    39673967     */
    3968     int rc = VINF_SUCCESS;
     3968    int vrc = VINF_SUCCESS;
    39693969    bool fFirst = true;
    39703970    try
     
    40474047                {
    40484048                    /* create the node */
    4049                     rc = mpVMM->pfnCFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
    4050                     if (RT_FAILURE(rc))
     4049                    vrc = mpVMM->pfnCFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
     4050                    if (RT_FAILURE(vrc))
    40514051                    {
    4052                         AssertLogRelMsgRC(rc, ("failed to insert node '%s'\n", pszExtraDataKey));
     4052                        AssertLogRelMsgRC(vrc, ("failed to insert node '%s'\n", pszExtraDataKey));
    40534053                        continue;
    40544054                    }
     
    40774077                /* check for type prefix first. */
    40784078                if (!strncmp(strCFGMValueUtf8.c_str(), RT_STR_TUPLE("string:")))
    4079                     rc = mpVMM->pfnCFGMR3InsertString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str() + sizeof("string:") - 1);
     4079                    vrc = mpVMM->pfnCFGMR3InsertString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str() + sizeof("string:") - 1);
    40804080                else if (!strncmp(strCFGMValueUtf8.c_str(), RT_STR_TUPLE("integer:")))
    40814081                {
    4082                     rc = RTStrToUInt64Full(strCFGMValueUtf8.c_str() + sizeof("integer:") - 1, 0, &u64Value);
    4083                     if (RT_SUCCESS(rc))
    4084                         rc = mpVMM->pfnCFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
     4082                    vrc = RTStrToUInt64Full(strCFGMValueUtf8.c_str() + sizeof("integer:") - 1, 0, &u64Value);
     4083                    if (RT_SUCCESS(vrc))
     4084                        vrc = mpVMM->pfnCFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
    40854085                }
    40864086                else if (!strncmp(strCFGMValueUtf8.c_str(), RT_STR_TUPLE("bytes:")))
     
    40934093                        if (pvBytes)
    40944094                        {
    4095                             rc = RTBase64Decode(pszBase64, pvBytes, cbValue, NULL, NULL);
    4096                             if (RT_SUCCESS(rc))
    4097                                 rc = mpVMM->pfnCFGMR3InsertBytes(pNode, pszCFGMValueName, pvBytes, cbValue);
     4095                            vrc = RTBase64Decode(pszBase64, pvBytes, cbValue, NULL, NULL);
     4096                            if (RT_SUCCESS(vrc))
     4097                                vrc = mpVMM->pfnCFGMR3InsertBytes(pNode, pszCFGMValueName, pvBytes, cbValue);
    40984098                            RTMemTmpFree(pvBytes);
    40994099                        }
    41004100                        else
    4101                             rc = VERR_NO_TMP_MEMORY;
     4101                            vrc = VERR_NO_TMP_MEMORY;
    41024102                    }
    41034103                    else if (cbValue == 0)
    4104                         rc = mpVMM->pfnCFGMR3InsertBytes(pNode, pszCFGMValueName, NULL, 0);
     4104                        vrc = mpVMM->pfnCFGMR3InsertBytes(pNode, pszCFGMValueName, NULL, 0);
    41054105                    else
    4106                         rc = VERR_INVALID_BASE64_ENCODING;
     4106                        vrc = VERR_INVALID_BASE64_ENCODING;
    41074107                }
    41084108                /* auto detect type. */
    41094109                else if (RT_SUCCESS(RTStrToUInt64Full(strCFGMValueUtf8.c_str(), 0, &u64Value)))
    4110                     rc = mpVMM->pfnCFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
     4110                    vrc = mpVMM->pfnCFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
    41114111                else
    4112                     rc = mpVMM->pfnCFGMR3InsertString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str());
    4113                 AssertLogRelMsgRCBreak(rc, ("failed to insert CFGM value '%s' to key '%s'\n",
    4114                                             strCFGMValueUtf8.c_str(), pszExtraDataKey));
     4112                    vrc = mpVMM->pfnCFGMR3InsertString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str());
     4113                AssertLogRelMsgRCBreak(vrc, ("failed to insert CFGM value '%s' to key '%s'\n",
     4114                                             strCFGMValueUtf8.c_str(), pszExtraDataKey));
    41154115            }
    41164116        }
     
    41214121        return x.m_vrc;
    41224122    }
    4123     return rc;
     4123    return vrc;
    41244124}
    41254125
     
    43894389
    43904390        RTFSTYPE enmFsTypeFile = RTFSTYPE_UNKNOWN;
    4391         int rc2 = RTFsQueryType(strFile.c_str(), &enmFsTypeFile);
    4392         AssertMsgRCReturn(rc2, ("Querying the file type of '%s' failed!\n", strFile.c_str()), rc2);
     4391        int vrc2 = RTFsQueryType(strFile.c_str(), &enmFsTypeFile);
     4392        AssertMsgRCReturn(vrc2, ("Querying the file type of '%s' failed!\n", strFile.c_str()), vrc2);
    43934393
    43944394        /* Ignore the error code. On error, the file system type is still 'unknown' so
     
    44274427        {
    44284428            RTFILE file;
    4429             int rc = RTFileOpen(&file, strFile.c_str(), RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
    4430             if (RT_SUCCESS(rc))
     4429            int vrc = RTFileOpen(&file, strFile.c_str(), RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
     4430            if (RT_SUCCESS(vrc))
    44314431            {
    44324432                RTFOFF maxSize;
    44334433                /* Careful: This function will work only on selected local file systems! */
    4434                 rc = RTFileQueryMaxSizeEx(file, &maxSize);
     4434                vrc = RTFileQueryMaxSizeEx(file, &maxSize);
    44354435                RTFileClose(file);
    4436                 if (   RT_SUCCESS(rc)
     4436                if (   RT_SUCCESS(vrc)
    44374437                    && maxSize > 0
    44384438                    && i64Size > (LONG64)maxSize)
     
    45874587{
    45884588    /* Unmount existing media only for floppy and DVD drives. */
    4589     int rc = VINF_SUCCESS;
     4589    int vrc = VINF_SUCCESS;
    45904590    PPDMIBASE pBase;
    45914591    if (enmBus == StorageBus_USB)
    4592         rc = pVMM->pfnPDMR3UsbQueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "SCSI", &pBase);
     4592        vrc = pVMM->pfnPDMR3UsbQueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "SCSI", &pBase);
    45934593    else if (   (enmBus == StorageBus_SAS || enmBus == StorageBus_SCSI || enmBus == StorageBus_VirtioSCSI)
    45944594             || (enmBus == StorageBus_SATA && enmDevType == DeviceType_DVD))
    4595         rc = pVMM->pfnPDMR3QueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "SCSI", &pBase);
     4595        vrc = pVMM->pfnPDMR3QueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "SCSI", &pBase);
    45964596    else /* IDE or Floppy */
    4597         rc = pVMM->pfnPDMR3QueryLun(pUVM, pcszDevice, uInstance, uLUN, &pBase);
    4598 
    4599     if (RT_FAILURE(rc))
     4597        vrc = pVMM->pfnPDMR3QueryLun(pUVM, pcszDevice, uInstance, uLUN, &pBase);
     4598
     4599    if (RT_FAILURE(vrc))
    46004600    {
    4601         if (rc == VERR_PDM_LUN_NOT_FOUND || rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
    4602             rc = VINF_SUCCESS;
    4603         AssertRC(rc);
     4601        if (vrc == VERR_PDM_LUN_NOT_FOUND || vrc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
     4602            vrc = VINF_SUCCESS;
     4603        AssertRC(vrc);
    46044604    }
    46054605    else
     
    46094609
    46104610        /* Unmount the media (but do not eject the medium!) */
    4611         rc = pIMount->pfnUnmount(pIMount, fForceUnmount, false /*=fEject*/);
    4612         if (rc == VERR_PDM_MEDIA_NOT_MOUNTED)
    4613             rc = VINF_SUCCESS;
     4611        vrc = pIMount->pfnUnmount(pIMount, fForceUnmount, false /*=fEject*/);
     4612        if (vrc == VERR_PDM_MEDIA_NOT_MOUNTED)
     4613            vrc = VINF_SUCCESS;
    46144614        /* for example if the medium is locked */
    4615         else if (RT_FAILURE(rc))
    4616             return rc;
     4615        else if (RT_FAILURE(vrc))
     4616            return vrc;
    46174617    }
    46184618
    4619     return rc;
     4619    return vrc;
    46204620}
    46214621
     
    46514651                                        PCFGMNODE *ppLunL0)
    46524652{
    4653     int rc = VINF_SUCCESS;
     4653    int vrc = VINF_SUCCESS;
    46544654    bool fAddLun = false;
    46554655
     
    46674667            && !fHotplug)
    46684668        {
    4669             rc = i_unmountMediumFromGuest(pUVM, pVMM, enmBus, enmDevType, pcszDevice, uInstance, uLUN, fForceUnmount);
    4670             if (RT_FAILURE(rc))
    4671                 return rc;
     4669            vrc = i_unmountMediumFromGuest(pUVM, pVMM, enmBus, enmDevType, pcszDevice, uInstance, uLUN, fForceUnmount);
     4670            if (RT_FAILURE(vrc))
     4671                return vrc;
    46724672        }
    46734673
     
    46904690                char szDriver[128];
    46914691                RT_ZERO(szDriver);
    4692                 rc  = pVMM->pfnCFGMR3QueryString(pDrvLun, "Driver", &szDriver[0], sizeof(szDriver));
    4693                 if (RT_SUCCESS(rc))
     4692                vrc  = pVMM->pfnCFGMR3QueryString(pDrvLun, "Driver", &szDriver[0], sizeof(szDriver));
     4693                if (RT_SUCCESS(vrc))
    46944694                    pszDriverDetach = RTStrDup(&szDriver[0]);
    46954695
     
    46994699
    47004700        if (enmBus == StorageBus_USB)
    4701             rc = pVMM->pfnPDMR3UsbDriverDetach(pUVM, pcszDevice, uInstance, uLUN, pszDriverDetach,
    4702                                                0 /* iOccurence */, fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG);
     4701            vrc = pVMM->pfnPDMR3UsbDriverDetach(pUVM, pcszDevice, uInstance, uLUN, pszDriverDetach,
     4702                                                0 /* iOccurence */, fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG);
    47034703        else
    4704             rc = pVMM->pfnPDMR3DriverDetach(pUVM, pcszDevice, uInstance, uLUN, pszDriverDetach,
    4705                                             0 /* iOccurence */, fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG);
     4704            vrc = pVMM->pfnPDMR3DriverDetach(pUVM, pcszDevice, uInstance, uLUN, pszDriverDetach,
     4705                                             0 /* iOccurence */, fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG);
    47064706
    47074707        if (pszDriverDetach)
     
    47244724            }
    47254725        }
    4726         if (rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
    4727             rc = VINF_SUCCESS;
    4728         AssertRCReturn(rc, rc);
     4726        if (vrc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
     4727            vrc = VINF_SUCCESS;
     4728        AssertRCReturn(vrc, vrc);
    47294729
    47304730        /*
     
    47594759        *ppLunL0 = pLunL0;
    47604760
    4761     return rc;
     4761    return vrc;
    47624762}
    47634763
     
    47854785    try
    47864786    {
    4787         int rc = VINF_SUCCESS;
     4787        int vrc = VINF_SUCCESS;
    47884788        HRESULT hrc;
    47894789        Bstr    bstr;
     
    48484848
    48494849                memset(aszUuid, 0, sizeof(aszUuid));
    4850                 rc = RTUuidCreate(&UsbMsd.mUuid);
    4851                 AssertRCReturn(rc, rc);
    4852                 rc = RTUuidToStr(&UsbMsd.mUuid, aszUuid, sizeof(aszUuid));
    4853                 AssertRCReturn(rc, rc);
     4850                vrc = RTUuidCreate(&UsbMsd.mUuid);
     4851                AssertRCReturn(vrc, vrc);
     4852                vrc = RTUuidToStr(&UsbMsd.mUuid, aszUuid, sizeof(aszUuid));
     4853                AssertRCReturn(vrc, vrc);
    48544854
    48554855                UsbMsd.iPort = uInstance;
     
    48654865        }
    48664866
    4867         rc = i_removeMediumDriverFromVm(pCtlInst, pcszDevice, uInstance, uLUN, enmBus, fAttachDetach,
    4868                                         fHotplug, fForceUnmount, pUVM, pVMM, lType, &pLunL0);
    4869         if (RT_FAILURE(rc))
    4870             return rc;
     4867        vrc = i_removeMediumDriverFromVm(pCtlInst, pcszDevice, uInstance, uLUN, enmBus, fAttachDetach,
     4868                                         fHotplug, fForceUnmount, pUVM, pVMM, lType, &pLunL0);
     4869        if (RT_FAILURE(vrc))
     4870            return vrc;
    48714871        if (ppLunL0)
    48724872            *ppLunL0 = pLunL0;
     
    48874887                || aMachineState == MachineState_Restoring))
    48884888        {
    4889             rc = i_checkMediumLocation(ptrMedium, &fUseHostIOCache);
    4890             if (RT_FAILURE(rc))
    4891                 return rc;
     4889            vrc = i_checkMediumLocation(ptrMedium, &fUseHostIOCache);
     4890            if (RT_FAILURE(vrc))
     4891                return vrc;
    48924892        }
    48934893
     
    49404940        }
    49414941
    4942         rc = i_configMedium(pLunL0,
    4943                             !!fPassthrough,
    4944                             lType,
    4945                             fUseHostIOCache,
    4946                             fBuiltinIOCache,
    4947                             fInsertDiskIntegrityDrv,
    4948                             fSetupMerge,
    4949                             uMergeSource,
    4950                             uMergeTarget,
    4951                             bstrBwGroup.isEmpty() ? NULL : Utf8Str(bstrBwGroup).c_str(),
    4952                             !!fDiscard,
    4953                             !!fNonRotational,
    4954                             ptrMedium,
    4955                             aMachineState,
    4956                             phrc);
    4957         if (RT_FAILURE(rc))
    4958             return rc;
     4942        vrc = i_configMedium(pLunL0,
     4943                             !!fPassthrough,
     4944                             lType,
     4945                             fUseHostIOCache,
     4946                             fBuiltinIOCache,
     4947                             fInsertDiskIntegrityDrv,
     4948                             fSetupMerge,
     4949                             uMergeSource,
     4950                             uMergeTarget,
     4951                             bstrBwGroup.isEmpty() ? NULL : Utf8Str(bstrBwGroup).c_str(),
     4952                             !!fDiscard,
     4953                             !!fNonRotational,
     4954                             ptrMedium,
     4955                             aMachineState,
     4956                             phrc);
     4957        if (RT_FAILURE(vrc))
     4958            return vrc;
    49594959
    49604960        if (fAttachDetach)
     
    49684968                    RTUuidCreate(&UsbMsd.mUuid);
    49694969                    UsbMsd.iPort = uInstance;
    4970                     rc = pVMM->pfnPDMR3UsbCreateEmulatedDevice(pUVM, pcszDevice, pCtlInst, &UsbMsd.mUuid, NULL);
    4971                     if (RT_SUCCESS(rc))
     4970                    vrc = pVMM->pfnPDMR3UsbCreateEmulatedDevice(pUVM, pcszDevice, pCtlInst, &UsbMsd.mUuid, NULL);
     4971                    if (RT_SUCCESS(vrc))
    49724972                        mUSBStorageDevices.push_back(UsbMsd);
    49734973                }
    49744974                else
    4975                     rc = pVMM->pfnPDMR3UsbDriverAttach(pUVM, pcszDevice, uInstance, uLUN,
    4976                                                        fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
     4975                    vrc = pVMM->pfnPDMR3UsbDriverAttach(pUVM, pcszDevice, uInstance, uLUN,
     4976                                                        fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
    49774977            }
    49784978            else if (   !fHotplug
    49794979                     && (   (enmBus == StorageBus_SAS || enmBus == StorageBus_SCSI || enmBus == StorageBus_VirtioSCSI)
    49804980                         || (enmBus == StorageBus_SATA && lType == DeviceType_DVD)))
    4981                 rc = pVMM->pfnPDMR3DriverAttach(pUVM, pcszDevice, uInstance, uLUN,
    4982                                                 fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
     4981                vrc = pVMM->pfnPDMR3DriverAttach(pUVM, pcszDevice, uInstance, uLUN,
     4982                                                 fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
    49834983            else
    4984                 rc = pVMM->pfnPDMR3DeviceAttach(pUVM, pcszDevice, uInstance, uLUN,
    4985                                                 fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
    4986             AssertRCReturn(rc, rc);
     4984                vrc = pVMM->pfnPDMR3DeviceAttach(pUVM, pcszDevice, uInstance, uLUN,
     4985                                                 fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
     4986            AssertRCReturn(vrc, vrc);
    49874987
    49884988            /*
     
    49914991             */
    49924992            PPDMIBASE pIBase = NULL;
    4993             rc = pVMM->pfnPDMR3QueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "VD", &pIBase);
    4994             if (RT_SUCCESS(rc) && pIBase)
     4993            vrc = pVMM->pfnPDMR3QueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "VD", &pIBase);
     4994            if (RT_SUCCESS(vrc) && pIBase)
    49954995            {
    49964996                PPDMIMEDIA pIMedium = (PPDMIMEDIA)pIBase->pfnQueryInterface(pIBase, PDMIMEDIA_IID);
    49974997                if (pIMedium)
    49984998                {
    4999                     rc = pIMedium->pfnSetSecKeyIf(pIMedium, mpIfSecKey, mpIfSecKeyHlp);
    5000                     Assert(RT_SUCCESS(rc) || rc == VERR_NOT_SUPPORTED);
     4999                    vrc = pIMedium->pfnSetSecKeyIf(pIMedium, mpIfSecKey, mpIfSecKeyHlp);
     5000                    Assert(RT_SUCCESS(vrc) || vrc == VERR_NOT_SUPPORTED);
    50015001                }
    50025002            }
     
    54015401
    54025402    RTHTTP hHttp;
    5403     int rc = RTHttpCreate(&hHttp);
    5404     if (RT_FAILURE(rc))
     5403    int vrc = RTHttpCreate(&hHttp);
     5404    if (RT_FAILURE(vrc))
    54055405    {
    5406         LogRel(("CLOUD-NET: Failed to create HTTP context (rc=%Rrc)\n", rc));
    5407         return rc;
     5406        LogRel(("CLOUD-NET: Failed to create HTTP context (rc=%Rrc)\n", vrc));
     5407        return vrc;
    54085408    }
    54095409
     
    54315431        const char *pcszProxyUrl = strProxyUrl.c_str();
    54325432        RTURIPARSED Parsed;
    5433         rc = RTUriParse(pcszProxyUrl, &Parsed);
    5434         if (RT_FAILURE(rc))
    5435         {
    5436             LogRel(("CLOUD-NET: Failed to parse proxy URL: %ls (rc=%d)\n", proxyUrl.raw(), rc));
     5433        vrc = RTUriParse(pcszProxyUrl, &Parsed);
     5434        if (RT_FAILURE(vrc))
     5435        {
     5436            LogRel(("CLOUD-NET: Failed to parse proxy URL: %ls (vrc=%Rrc)\n", proxyUrl.raw(), vrc));
    54375437            return false;
    54385438        }
     
    54635463    else if (enmProxyMode == ProxyMode_System)
    54645464    {
    5465         rc = RTHttpUseSystemProxySettings(hHttp);
    5466         if (RT_FAILURE(rc))
    5467         {
    5468             LogRel(("%s: RTHttpUseSystemProxySettings() failed: %Rrc", __FUNCTION__, rc));
     5465        vrc = RTHttpUseSystemProxySettings(hHttp);
     5466        if (RT_FAILURE(vrc))
     5467        {
     5468            LogRel(("%s: RTHttpUseSystemProxySettings() failed: %Rrc", __FUNCTION__, vrc));
    54695469            RTHttpDestroy(hHttp);
    5470             return rc;
    5471         }
    5472         rc = RTHttpQueryProxyInfoForUrl(hHttp, ("http://" + strIpAddr).c_str(), &ProxyInfo);
     5470            return vrc;
     5471        }
     5472        vrc = RTHttpQueryProxyInfoForUrl(hHttp, ("http://" + strIpAddr).c_str(), &ProxyInfo);
    54735473        RTHttpDestroy(hHttp);
    5474         if (RT_FAILURE(rc))
    5475         {
    5476             LogRel(("CLOUD-NET: Failed to get proxy for %s (rc=%Rrc)\n", strIpAddr.c_str(), rc));
    5477             return rc;
     5474        if (RT_FAILURE(vrc))
     5475        {
     5476            LogRel(("CLOUD-NET: Failed to get proxy for %s (rc=%Rrc)\n", strIpAddr.c_str(), vrc));
     5477            return vrc;
    54785478        }
    54795479
     
    55265526    RTHttpFreeProxyInfo(&ProxyInfo);
    55275527    RTStrFree(pszProxyType);
    5528     return rc;
     5528    return vrc;
    55295529}
    55305530
     
    55735573    try
    55745574    {
    5575         int rc = VINF_SUCCESS;
     5575        int vrc = VINF_SUCCESS;
    55765576        HRESULT hrc;
    55775577        Bstr bstr;
     
    56155615        if (fAttachDetach)
    56165616        {
    5617             rc = pVMM->pfnPDMR3DeviceDetach(pUVM, pszDevice, uInstance, uLun, 0 /*fFlags*/);
    5618             if (rc == VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN)
    5619                 rc = VINF_SUCCESS;
    5620             AssertLogRelRCReturn(rc, rc);
     5617            vrc = pVMM->pfnPDMR3DeviceDetach(pUVM, pszDevice, uInstance, uLun, 0 /*fFlags*/);
     5618            if (vrc == VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN)
     5619                vrc = VINF_SUCCESS;
     5620            AssertLogRelRCReturn(vrc, vrc);
    56215621
    56225622            /* Nuke anything which might have been left behind. */
     
    62356235                    }
    62366236                    RTNETADDRIPV4 ipAddr, ipMask;
    6237                     rc = bstrLowerIP.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrLowerIP).c_str(), &ipAddr);
    6238                     if (RT_FAILURE(rc))
     6237                    vrc = bstrLowerIP.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrLowerIP).c_str(), &ipAddr);
     6238                    if (RT_FAILURE(vrc))
    62396239                    {
    62406240                        /* We failed to locate any valid config of this vboxnetX interface, assume defaults. */
     
    62446244                        bstrNetworkMask.setNull();
    62456245                        bstrUpperIP.setNull();
    6246                         rc = RTNetStrToIPv4Addr(Utf8Str(bstrLowerIP).c_str(), &ipAddr);
    6247                         AssertLogRelMsgReturn(RT_SUCCESS(rc), ("RTNetStrToIPv4Addr(%ls) failed, rc=%Rrc\n", bstrLowerIP.raw(), rc),
     6246                        vrc = RTNetStrToIPv4Addr(Utf8Str(bstrLowerIP).c_str(), &ipAddr);
     6247                        AssertLogRelMsgReturn(RT_SUCCESS(vrc), ("RTNetStrToIPv4Addr(%ls) failed, vrc=%Rrc\n", bstrLowerIP.raw(), vrc),
    62486248                                              VERR_MAIN_CONFIG_CONSTRUCTOR_COM_ERROR);
    62496249                    }
    6250                     rc = bstrNetworkMask.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrNetworkMask).c_str(), &ipMask);
    6251                     if (RT_FAILURE(rc))
     6250                    vrc = bstrNetworkMask.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrNetworkMask).c_str(), &ipMask);
     6251                    if (RT_FAILURE(vrc))
    62526252                    {
    62536253                        LogRel(("NetworkAttachmentType_HostOnly: Invalid or missing network mask '%ls', using '%s' instead.\n",
    62546254                                bstrNetworkMask.raw(), VBOXNET_IPV4MASK_DEFAULT));
    62556255                        bstrNetworkMask = VBOXNET_IPV4MASK_DEFAULT;
    6256                         rc = RTNetStrToIPv4Addr(Utf8Str(bstrNetworkMask).c_str(), &ipMask);
    6257                         AssertLogRelMsgReturn(RT_SUCCESS(rc), ("RTNetStrToIPv4Addr(%ls) failed, rc=%Rrc\n", bstrNetworkMask.raw(), rc),
     6256                        vrc = RTNetStrToIPv4Addr(Utf8Str(bstrNetworkMask).c_str(), &ipMask);
     6257                        AssertLogRelMsgReturn(RT_SUCCESS(vrc), ("RTNetStrToIPv4Addr(%ls) failed, vrc=%Rrc\n", bstrNetworkMask.raw(), vrc),
    62586258                                              VERR_MAIN_CONFIG_CONSTRUCTOR_COM_ERROR);
    62596259                    }
    6260                     rc = bstrUpperIP.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrUpperIP).c_str(), &ipAddr);
    6261                     if (RT_FAILURE(rc))
     6260                    vrc = bstrUpperIP.isEmpty() ? VERR_MISSING : RTNetStrToIPv4Addr(Utf8Str(bstrUpperIP).c_str(), &ipAddr);
     6261                    if (RT_FAILURE(vrc))
    62626262                    {
    62636263                        ipAddr.au32[0] = RT_H2N_U32((RT_N2H_U32(ipAddr.au32[0]) | ~RT_N2H_U32(ipMask.au32[0])) - 1); /* Do we need to exlude the last IP? */
     
    63316331                if (!SUCCEEDED(hrc))
    63326332                {
    6333                     LogRel(("NetworkAttachmentType_HostOnly: FindByName failed, rc (0x%x)\n", rc));
     6333                    LogRel(("NetworkAttachmentType_HostOnly: FindByName failed, vrc=%Rrc\n", vrc));
    63346334                    return pVMM->pfnVMR3SetError(pUVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
    63356335                                                N_("Nonexistent host networking interface, name '%ls'"), HostOnlyName.raw());
     
    67086708#endif /* VBOX_WITH_CLOUD_NET */
    67096709            {
    6710                 if (SUCCEEDED(hrc) && RT_SUCCESS(rc))
     6710                if (SUCCEEDED(hrc) && RT_SUCCESS(vrc))
    67116711                {
    67126712                    if (fAttachDetach)
    67136713                    {
    6714                         rc = pVMM->pfnPDMR3DriverAttach(mpUVM, pszDevice, uInstance, uLun, 0 /*fFlags*/, NULL /* ppBase */);
    6715                         //AssertRC(rc);
     6714                        vrc = pVMM->pfnPDMR3DriverAttach(mpUVM, pszDevice, uInstance, uLun, 0 /*fFlags*/, NULL /* ppBase */);
     6715                        //AssertRC(vrc);
    67166716                    }
    67176717
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