VirtualBox

Changeset 45367 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Apr 5, 2013 1:02:06 PM (12 years ago)
Author:
vboxsync
Message:

Main: a couple of whitespace fixes

Location:
trunk/src/VBox/Main
Files:
22 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/DHCPServerRunner.h

    r44529 r45367  
    5454    int setOption(DHCPCFG opt, const char *val, bool enabled)
    5555    {
    56         if(opt == 0 || opt >= DHCPCFG_NOTOPT_MAXVAL)
     56        if (opt == 0 || opt >= DHCPCFG_NOTOPT_MAXVAL)
    5757            return VERR_INVALID_PARAMETER;
    58         if(isRunning())
     58        if (isRunning())
    5959            return VERR_INVALID_STATE;
    6060
  • trunk/src/VBox/Main/include/NATNetworkServiceRunner.h

    r45138 r45367  
    4444    int setOption(NATSCCFG opt, const char *val, bool enabled)
    4545    {
    46         if(opt == 0 || opt >= NATSCCFG_NOTOPT_MAXVAL)
     46        if (opt == 0 || opt >= NATSCCFG_NOTOPT_MAXVAL)
    4747            return VERR_INVALID_PARAMETER;
    48         if(isRunning())
     48        if (isRunning())
    4949            return VERR_INVALID_STATE;
    5050
  • trunk/src/VBox/Main/include/netif.h

    r45145 r45367  
    124124DECLINLINE(int) prefixLength2IPv6Address(ULONG cPrefix, PRTNETADDRIPV6 aAddrPtr)
    125125{
    126     if(cPrefix > 128)
     126    if (cPrefix > 128)
    127127        return VERR_INVALID_PARAMETER;
    128     if(!aAddrPtr)
     128    if (!aAddrPtr)
    129129        return VERR_INVALID_PARAMETER;
    130130
  • trunk/src/VBox/Main/include/ovfreader.h

    r45354 r45367  
    170170    OVFVersion_T getOVFVersion() const
    171171    {
    172         if(version == "0.9")
     172        if (version == "0.9")
    173173            return OVFVersion_0_9;
    174         else if(version == "1.0")
     174        else if (version == "1.0")
    175175            return OVFVersion_1_0;
    176         else if(version == "2.0")
     176        else if (version == "2.0")
    177177            return OVFVersion_2_0;
    178178        else
     
    183183    RTCString getStringOVFVersion() const
    184184    {
    185         if(version == "0.9")
     185        if (version == "0.9")
    186186            return "0.9";
    187         else if(version == "1.0")
     187        else if (version == "1.0")
    188188            return "1.0";
    189         else if(version == "2.0")
     189        else if (version == "2.0")
    190190            return "2.0";
    191191        else
  • trunk/src/VBox/Main/src-all/ProgressImpl.cpp

    r44528 r45367  
    884884             * have to loop as long as we reached the same operation count. */
    885885            ULONG curOp;
    886             for(;;)
     886            for (;;)
    887887            {
    888888                rc = pProgressAsync->COMGETTER(Operation(&curOp));
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r45276 r45367  
    472472    for (size_t j = 0; j < u32Size; ++j)
    473473    {
    474         if(aSataPortUsed[j] > lBaseVal &&
    475            aSataPortUsed[j] <= lNextPortUsed)
     474        if (   aSataPortUsed[j] >  lBaseVal
     475            && aSataPortUsed[j] <= lNextPortUsed)
    476476           lNextPortUsed = aSataPortUsed[j];
    477477    }
     
    16691669                            LONG lPortNum = 0;
    16701670                            hrc = pMediumAtt->COMGETTER(Port)(&lPortNum);                   H();
    1671                             if(SUCCEEDED(hrc))
     1671                            if (SUCCEEDED(hrc))
    16721672                            {
    16731673                                DeviceType_T lType;
    16741674                                hrc = pMediumAtt->COMGETTER(Type)(&lType);                    H();
    1675                                 if(SUCCEEDED(hrc) && lType == DeviceType_HardDisk)
     1675                                if (SUCCEEDED(hrc) && lType == DeviceType_HardDisk)
    16761676                                {
    16771677                                    /* find min port number used for HD */
    1678                                     if(lPortNum < lPortLUN[0])
     1678                                    if (lPortNum < lPortLUN[0])
    16791679                                        lPortLUN[0] = lPortNum;
    16801680                                    lPortUsed[u32HDSataPortCount++] = lPortNum;
  • trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp

    r45109 r45367  
    656656    int rc = VINF_SUCCESS;
    657657    size_t p = 0;
    658     while(p < listPair.size() && RT_SUCCESS(rc))
     658    while (p < listPair.size() && RT_SUCCESS(rc))
    659659    {
    660660        Utf8Str strKey = listPair.at(p++);
  • trunk/src/VBox/Main/src-client/GuestDnDImpl.cpp

    r42278 r45367  
    441441    RTCList<RTCString> list = strFormats.split("\r\n");
    442442    size_t i = 0;
    443     while(i < list.size())
     443    while (i < list.size())
    444444    {
    445445        /* Only keep allowed format types. */
  • trunk/src/VBox/Main/src-server/ApplianceImpl.cpp

    r45354 r45367  
    274274}
    275275
    276 bool checkComplianceDigestAndOVFVersion(bool digestType, ovf::OVFVersion_T ovfVersion)
     276bool checkComplianceDigestAndOVFVersion(bool fDigestType, ovf::OVFVersion_T ovfVersion)
    277277{
    278278    bool res = false;
    279     if ((ovfVersion == ovf::OVFVersion_2_0 && digestType == true) ||
    280         (ovfVersion == ovf::OVFVersion_1_0 && digestType == false) ||
    281         (ovfVersion == ovf::OVFVersion_0_9 && digestType == false))
     279    if (   (ovfVersion == ovf::OVFVersion_2_0 &&  fDigestType)
     280        || (ovfVersion == ovf::OVFVersion_1_0 && !fDigestType)
     281        || (ovfVersion == ovf::OVFVersion_0_9 && !fDigestType))
    282282        res = true;
    283283    return res;
     
    794794           we have to loop as long as we reached the same operation count. */
    795795        ULONG curOp;
    796         for(;;)
     796        for (;;)
    797797        {
    798798            rc = pProgressAsync->COMGETTER(Operation(&curOp));
  • trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp

    r45227 r45367  
    16771677        }
    16781678        rc = writeFSImpl(pTask, writeLock, pShaIo, &storage);
    1679     }while(0);
     1679    } while (0);
    16801680
    16811681    /* Cleanup */
     
    17311731        }
    17321732        rc = writeFSImpl(pTask, writeLock, pShaIo, &storage);
    1733     }while(0);
     1733    } while (0);
    17341734
    17351735    RTTarClose(tar);
     
    17421742
    17431743    /* Delete ova file on error */
    1744     if(FAILED(rc))
     1744    if (FAILED(rc))
    17451745        RTFileDelete(pTask->locInfo.strPath.c_str());
    17461746
  • trunk/src/VBox/Main/src-server/ApplianceImplIO.cpp

    r42389 r45367  
    108108# define DEBUG_PRINT_FLOW() RTPrintf("%s\n", __FUNCTION__)
    109109#else
    110 # define DEBUG_PRINT_FLOW() do {} while(0)
     110# define DEBUG_PRINT_FLOW() do {} while (0)
    111111#endif
    112112
     
    478478    int rc = VINF_SUCCESS;
    479479    bool fLoop = true;
    480     while(fLoop)
     480    while (fLoop)
    481481    {
    482482        /* What should we do next? */
     
    756756        }
    757757    }
    758     while(0);
     758    while (0);
    759759
    760760    if (RT_FAILURE(rc))
     
    10151015        {
    10161016            rc = shaSignalManifestThread(pInt, STATUS_WRITE);
    1017             if(RT_FAILURE(rc))
     1017            if (RT_FAILURE(rc))
    10181018                break;
    10191019            /* If there is _no_ free space available, we have to wait until it is. */
     
    11021102        {
    11031103            rc = shaSignalManifestThread(pInt, STATUS_READ);
    1104             if(RT_FAILURE(rc))
     1104            if (RT_FAILURE(rc))
    11051105                break;
    11061106            /* If there is _no_ data available, we have to wait until it is. */
     
    12751275            cbAllRead += cbRead;
    12761276        }
    1277     }while(0);
     1277    } while (0);
    12781278
    12791279    pIfIo->pfnClose(pvUser, pvStorage);
  • trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp

    r45354 r45367  
    852852                RTFILE pFile = NULL;
    853853                vrc = RTFileOpen(&pFile, strMfFile.c_str(), RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_NONE);
    854                 if(RT_SUCCESS(vrc) && pFile != NULL)
     854                if (RT_SUCCESS(vrc) && pFile != NULL)
    855855                {
    856856                    uint64_t cbFile = 0;
     
    932932        }
    933933
    934     }while(0);
     934    }while (0);
    935935
    936936    /* Cleanup */
     
    10681068                    break;
    10691069
    1070             }while(0);
     1070            } while (0);
    10711071
    10721072            RTTarClose(tar);
  • trunk/src/VBox/Main/src-server/HostImpl.cpp

    r45051 r45367  
    549549    int rc = VERR_GENERAL_FAILURE;
    550550
    551     hr = pncc->GetDisplayName( &lpszName );
     551    hr = pncc->GetDisplayName(&lpszName);
    552552    Assert(hr == S_OK);
    553553    if (hr == S_OK)
     
    642642
    643643    /* we are using the INetCfg API for getting the list of miniports */
    644     hr = VBoxNetCfgWinQueryINetCfg( FALSE,
    645                        VBOX_APP_NAME,
    646                        &pNc,
    647                        &lpszApp );
     644    hr = VBoxNetCfgWinQueryINetCfg(FALSE,
     645                                   VBOX_APP_NAME,
     646                                   &pNc,
     647                                   &lpszApp);
    648648    Assert(hr == S_OK);
    649649    if (hr == S_OK)
     
    668668            hr = VBoxNetCfgWinGetBindingPathEnum(pTcpIpNcc, EBP_BELOW, &pEnumBp);
    669669            Assert(hr == S_OK);
    670             if ( hr == S_OK )
     670            if (hr == S_OK)
    671671            {
    672672                hr = VBoxNetCfgWinGetFirstBindingPath(pEnumBp, &pBp);
    673673                Assert(hr == S_OK || hr == S_FALSE);
    674                 while( hr == S_OK )
     674                while (hr == S_OK)
    675675                {
    676676                    /* S_OK == enabled, S_FALSE == disabled */
     
    679679                        hr = VBoxNetCfgWinGetBindingInterfaceEnum(pBp, &pEnumBi);
    680680                        Assert(hr == S_OK);
    681                         if ( hr == S_OK )
     681                        if (hr == S_OK)
    682682                        {
    683683                            hr = VBoxNetCfgWinGetFirstBindingInterface(pEnumBi, &pBi);
    684684                            Assert(hr == S_OK);
    685                             while(hr == S_OK)
     685                            while (hr == S_OK)
    686686                            {
    687                                 hr = pBi->GetLowerComponent( &pMpNcc );
     687                                hr = pBi->GetLowerComponent(&pMpNcc);
    688688                                Assert(hr == S_OK);
    689689                                if (hr == S_OK)
     
    699699                                        }
    700700                                    }
    701                                     VBoxNetCfgWinReleaseRef( pMpNcc );
     701                                    VBoxNetCfgWinReleaseRef(pMpNcc);
    702702                                }
    703703                                VBoxNetCfgWinReleaseRef(pBi);
  • trunk/src/VBox/Main/src-server/SnapshotImpl.cpp

    r45098 r45367  
    25242524
    25252525                {
    2526                     if ( pSource_local.isNull() ||
    2527                          pSource_local == pTarget_local )
     2526                    if (   pSource_local.isNull()
     2527                        || pSource_local == pTarget_local)
    25282528                    {
    25292529                        ++it_md;
  • trunk/src/VBox/Main/src-server/USBControllerImpl.cpp

    r42551 r45367  
    437437
    438438    AutoCaller autoCaller(this);
    439     if(FAILED(autoCaller.rc())) return autoCaller.rc();
     439    if (FAILED(autoCaller.rc())) return autoCaller.rc();
    440440
    441441    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
  • trunk/src/VBox/Main/src-server/generic/NetIf-generic.cpp

    r44742 r45367  
    316316    int rc = VINF_SUCCESS;
    317317    HRESULT hr = pVBox->COMGETTER(Host)(host.asOutParam());
    318     if(SUCCEEDED(hr))
     318    if (SUCCEEDED(hr))
    319319    {
    320320        Bstr ifname;
     
    329329                            Bstr("Removing host network interface").raw(),
    330330                            FALSE /* aCancelable */);
    331         if(SUCCEEDED(rc))
     331        if (SUCCEEDED(rc))
    332332        {
    333333            progress.queryInterfaceTo(aProgress);
  • trunk/src/VBox/Main/src-server/linux/HostHardwareLinux.cpp

    r44528 r45367  
    12831283        if (RT_FAILURE(rc = pipeCreateSimple(&mhWakeupPipeR, &mhWakeupPipeW)))
    12841284            break;
    1285     } while(0);
     1285    } while (0);
    12861286    mStatus = rc;
    12871287    if (RT_FAILURE(rc))
  • trunk/src/VBox/Main/src-server/linux/USBGetDevices.cpp

    r44528 r45367  
    14311431}
    14321432# define dlsym testDLSym
    1433 # define close(a) do {} while(0)
     1433# define close(a) do {} while (0)
    14341434#endif
    14351435
  • trunk/src/VBox/Main/src-server/solaris/USBProxyServiceSolaris.cpp

    r41529 r45367  
    305305
    306306            rc = DI_WALK_CONTINUE;
    307         } while(0);
     307        } while (0);
    308308
    309309        di_devfs_path_free(pszDevicePath);
  • trunk/src/VBox/Main/src-server/win/NetIf-win.cpp

    r45073 r45367  
    15131513                                hr = pBp->EnumBindingInterfaces(&pEnumBi);
    15141514                                Assert(hr == S_OK);
    1515                                 if ( hr == S_OK )
     1515                                if (hr == S_OK)
    15161516                                {
    15171517                                    hr = pEnumBi->Reset();
     
    15211521                                        while ((hr = pEnumBi->Next(1, &pBi, NULL)) == S_OK)
    15221522                                        {
    1523                                             hr = pBi->GetLowerComponent( &pMpNcc );
     1523                                            hr = pBi->GetLowerComponent(&pMpNcc);
    15241524                                            Assert(hr == S_OK);
    15251525                                            if (hr == S_OK)
  • trunk/src/VBox/Main/testcase/tstCollector.cpp

    r45051 r45367  
    6464            break; \
    6565        ++nCalls; \
    66     } while(RTTimeMilliTS() - start < RUN_TIME_MS); \
     66    } while (RTTimeMilliTS() - start < RUN_TIME_MS); \
    6767    if (RT_FAILURE(rc)) \
    6868    { \
     
    469469        }
    470470        start = RTTimeMilliTS();
    471         while(RTTimeMilliTS() - start < 5000)
     471        while (RTTimeMilliTS() - start < 5000)
    472472            ; // Loop for 5 seconds
    473473        rc = collector->preCollect(hints, 0);
  • trunk/src/VBox/Main/webservice/vboxweb.cpp

    r45075 r45367  
    14441444    ssize_t cbOut = RTBase64DecodedSize(pszStr, NULL);
    14451445
    1446     if(cbOut > DECODE_STR_MAX)
     1446    if (cbOut > DECODE_STR_MAX)
    14471447    {
    14481448        WebLog("Decode string too long.\n");
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