VirtualBox

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


Ignore:
Timestamp:
May 5, 2008 12:32:51 PM (17 years ago)
Author:
vboxsync
Message:

AssertBreak -> AssertBreakStmt.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r8548 r8569  
    28782878
    28792879                pIMount = (PPDMIMOUNT) pBase->pfnQueryInterface (pBase, PDMINTERFACE_MOUNT);
    2880                 AssertBreak (pIMount, rc = VERR_INVALID_POINTER);
     2880                AssertBreakStmt (pIMount, rc = VERR_INVALID_POINTER);
    28812881
    28822882                /*
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r8457 r8569  
    723723            {
    724724                ComPtr<IVirtualDiskImage> vdiDisk = hardDisk;
    725                 AssertBreak (!vdiDisk.isNull(), hrc = E_FAIL);
     725                AssertBreakStmt (!vdiDisk.isNull(), hrc = E_FAIL);
    726726
    727727                rc = CFGMR3InsertNode(pLunL0,   "AttachedDriver", &pLunL1);                 RC_CHECK();
     
    743743
    744744                    vdiDisk = curHardDisk;
    745                     AssertBreak (!vdiDisk.isNull(), hrc = E_FAIL);
     745                    AssertBreakStmt (!vdiDisk.isNull(), hrc = E_FAIL);
    746746
    747747                    PCFGMNODE pCur;
     
    761761            {
    762762                ComPtr<IISCSIHardDisk> iSCSIDisk = hardDisk;
    763                 AssertBreak (!iSCSIDisk.isNull(), hrc = E_FAIL);
     763                AssertBreakStmt (!iSCSIDisk.isNull(), hrc = E_FAIL);
    764764
    765765                rc = CFGMR3InsertNode(pLunL0,   "AttachedDriver", &pLunL1);                 RC_CHECK();
     
    827827            {
    828828                ComPtr<IVMDKImage> vmdkDisk = hardDisk;
    829                 AssertBreak (!vmdkDisk.isNull(), hrc = E_FAIL);
     829                AssertBreakStmt (!vmdkDisk.isNull(), hrc = E_FAIL);
    830830
    831831                rc = CFGMR3InsertNode(pLunL0,   "AttachedDriver", &pLunL1);                 RC_CHECK();
     
    845845            {
    846846                ComPtr<ICustomHardDisk> customHardDisk = hardDisk;
    847                 AssertBreak (!customHardDisk.isNull(), hrc = E_FAIL);
     847                AssertBreakStmt (!customHardDisk.isNull(), hrc = E_FAIL);
    848848
    849849                rc = CFGMR3InsertNode(pLunL0,   "AttachedDriver", &pLunL1);                 RC_CHECK();
     
    862862            {
    863863                ComPtr<IVHDImage> vhdDisk = hardDisk;
    864                 AssertBreak (!vhdDisk.isNull(), hrc = E_FAIL);
     864                AssertBreakStmt (!vhdDisk.isNull(), hrc = E_FAIL);
    865865
    866866                rc = CFGMR3InsertNode(pLunL0,   "AttachedDriver", &pLunL1);                 RC_CHECK();
  • trunk/src/VBox/Main/VirtualBoxImpl.cpp

    r8170 r8569  
    23932393    do
    23942394    {
    2395         AssertBreak (d.get(), rc = E_POINTER);
     2395        AssertBreakStmt (d.get(), rc = E_POINTER);
    23962396        AssertReturn (!d->progress.isNull(), E_POINTER);
    23972397
  • trunk/src/VBox/Main/darwin/iokit.cpp

    r8538 r8569  
    821821            do /* loop for breaking out of on failure. */
    822822            {
    823                 AssertBreak(pCur,);
     823                AssertBreakVoid(pCur);
    824824
    825825                /*
     
    829829                pCur->enmState = USBDEVICESTATE_USED_BY_HOST_CAPTURABLE;    /* just a default, we'll try harder in a bit. */
    830830
    831                 AssertBreak(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceClass),           &pCur->bDeviceClass),);
     831                AssertBreakVoid(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceClass),           &pCur->bDeviceClass));
    832832                /* skip hubs */
    833833                if (pCur->bDeviceClass == 0x09 /* hub, find a define! */)
    834834                    break;
    835                 AssertBreak(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceSubClass),       &pCur->bDeviceSubClass),);
    836                 AssertBreak(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceProtocol),       &pCur->bDeviceProtocol),);
    837                 AssertBreak(darwinDictGetU16(PropsRef, CFSTR(kUSBVendorID),             &pCur->idVendor),);
    838                 AssertBreak(darwinDictGetU16(PropsRef, CFSTR(kUSBProductID),            &pCur->idProduct),);
    839                 AssertBreak(darwinDictGetU16(PropsRef, CFSTR(kUSBDeviceReleaseNumber),  &pCur->bcdDevice),);
     835                AssertBreakVoid(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceSubClass),       &pCur->bDeviceSubClass));
     836                AssertBreakVoid(darwinDictGetU8(PropsRef,  CFSTR(kUSBDeviceProtocol),       &pCur->bDeviceProtocol));
     837                AssertBreakVoid(darwinDictGetU16(PropsRef, CFSTR(kUSBVendorID),             &pCur->idVendor));
     838                AssertBreakVoid(darwinDictGetU16(PropsRef, CFSTR(kUSBProductID),            &pCur->idProduct));
     839                AssertBreakVoid(darwinDictGetU16(PropsRef, CFSTR(kUSBDeviceReleaseNumber),  &pCur->bcdDevice));
    840840                uint32_t u32LocationId;
    841                 AssertBreak(darwinDictGetU32(PropsRef, CFSTR(kUSBDevicePropertyLocationID), &u32LocationId),);
     841                AssertBreakVoid(darwinDictGetU32(PropsRef, CFSTR(kUSBDevicePropertyLocationID), &u32LocationId));
    842842                uint64_t u64SessionId;
    843                 AssertBreak(darwinDictGetU64(PropsRef, CFSTR("sessionID"), &u64SessionId),);
     843                AssertBreakVoid(darwinDictGetU64(PropsRef, CFSTR("sessionID"), &u64SessionId));
    844844                char szAddress[64];
    845845                RTStrPrintf(szAddress, sizeof(szAddress), "p=0x%04RX16;v=0x%04RX16;s=0x%016RX64;l=0x%08RX32",
    846846                            pCur->idProduct, pCur->idVendor, u64SessionId, u32LocationId);
    847847                pCur->pszAddress = RTStrDup(szAddress);
    848                 AssertBreak(pCur->pszAddress,);
     848                AssertBreakVoid(pCur->pszAddress);
    849849                pCur->bBus = u32LocationId >> 24;
    850                 AssertBreak(darwinDictGetU8(PropsRef,  CFSTR("PortNum"),                &pCur->bPort),);
     850                AssertBreakVoid(darwinDictGetU8(PropsRef,  CFSTR("PortNum"),                &pCur->bPort));
    851851                uint8_t bSpeed;
    852                 AssertBreak(darwinDictGetU8(PropsRef,  CFSTR(kUSBDevicePropertySpeed),  &bSpeed),);
     852                AssertBreakVoid(darwinDictGetU8(PropsRef,  CFSTR(kUSBDevicePropertySpeed),  &bSpeed));
    853853                Assert(bSpeed <= 2);
    854854                pCur->enmSpeed = bSpeed == 2 ? USBDEVICESPEED_HIGH
     
    10271027                SInt32 i32 = (int16_t)u64Value;
    10281028                CFNumberRef Num = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &i32);
    1029                 AssertBreak(Num,);
     1029                AssertBreakVoid(Num);
    10301030                CFDictionarySetValue(RefMatchingDict, chValue == 'p' ? CFSTR(kUSBProductID) : CFSTR(kUSBVendorID), Num);
    10311031                CFRelease(Num);
  • trunk/src/VBox/Main/linux/server_module.cpp

    r8155 r8569  
    7878};
    7979
    80 /** 
     80/**
    8181 *  Full path to the VBoxSVC executable.
    8282 */
     
    9393NS_IMPL_CI_INTERFACE_GETTER1 (VirtualBox, IVirtualBox)
    9494
    95 /** 
     95/**
    9696 *  VirtualBox component constructor.
    9797 *
     
    135135
    136136                    LogFlowFunc (("component directory = \"%s\"\n", path.get()));
    137                     AssertBreak (path.Length() + strlen (VBoxSVC_exe) < RTPATH_MAX,
    138                                  rc = NS_ERROR_FAILURE);
     137                    AssertBreakStmt (path.Length() + strlen (VBoxSVC_exe) < RTPATH_MAX,
     138                                     rc = NS_ERROR_FAILURE);
    139139
    140140                    strcpy (VBoxSVCPath, path.get());
     
    255255#if 0
    256256/// @todo not really necessary for the moment
    257 /** 
    258  * 
    259  * @param aCompMgr 
    260  * @param aPath 
    261  * @param aLoaderStr 
    262  * @param aType 
    263  * @param aInfo 
    264  * 
    265  * @return 
     257/**
     258 *
     259 * @param aCompMgr
     260 * @param aPath
     261 * @param aLoaderStr
     262 * @param aType
     263 * @param aInfo
     264 *
     265 * @return
    266266 */
    267267static NS_IMETHODIMP
     
    286286#endif
    287287
    288 /** 
     288/**
    289289 *  Component definition table.
    290290 *  Lists all components defined in this module.
     
    299299        NULL, // deregistration function
    300300        NULL, // destructor function
    301         /// @todo 
     301        /// @todo
    302302        NS_CI_INTERFACE_GETTER_NAME(VirtualBox), // interfaces function
    303303        NULL, // language helper
    304         /// @todo 
     304        /// @todo
    305305        &NS_CLASSINFO_NAME(VirtualBox) // global class info & flags
    306306    }
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