Changeset 63482 in vbox
- Timestamp:
- Aug 15, 2016 2:24:48 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110134
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r63478 r63482 1222 1222 1223 1223 1224 # if defined(IN_RING3) && (defined(DEBUG) || defined(VBOX_HDA_WITH_FIFO)) 1224 1225 /** 1225 1226 * Retrieves the number of bytes of a FIFOW register. … … 1241 1242 return cb; 1242 1243 } 1244 #endif 1243 1245 1244 1246 -
trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp
r63467 r63482 634 634 void *pvUser) 635 635 { 636 RT_NOREF(p aProperties)636 RT_NOREF(propertyID, cAddresses, paProperties) 637 637 LogFlowFunc(("propertyID=%u cAddresses=%u pvUser=%p\n", propertyID, cAddresses, pvUser)); 638 638 … … 712 712 void *pvUser) 713 713 { 714 OSStatus err = noErr; 715 714 RT_NOREF(propertyID); 716 715 LogFlowFunc(("propertyID=%u cAddresses=%u pvUser=%p\n", propertyID, cAddresses, pvUser)); 717 716 … … 719 718 AssertPtr(pCbCtx); 720 719 720 OSStatus err = noErr; 721 721 for (UInt32 idxAddress = 0; idxAddress < cAddresses; idxAddress++) 722 722 { -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-cocoa.m
r63480 r63482 835 835 VMSVGA3DCOCOA_DECL(void) vmsvga3dCocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y) 836 836 { 837 RT_NOREF(pParentView); 837 838 LogFlow(("vmsvga3dCocoaViewSetPosition: pView=%p pParentView=%p (%d,%d)\n", (void *)pView, (void *)pParentView, x, y)); 838 839 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; -
trunk/src/VBox/Devices/Storage/DrvHostBase.cpp
r63478 r63482 212 212 static DECLCALLBACK(int) drvHostBaseWrite(PPDMIMEDIA pInterface, uint64_t off, const void *pvBuf, size_t cbWrite) 213 213 { 214 RT_NOREF(off, pvBuf, cbWrite); 214 215 PDRVHOSTBASE pThis = PDMIMEDIA_2_DRVHOSTBASE(pInterface); 215 216 LogFlow(("%s-%d: drvHostBaseWrite: off=%#llx pvBuf=%p cbWrite=%#x (%s)\n", -
trunk/src/VBox/Devices/Storage/UsbMsd.cpp
r62954 r63482 780 780 781 781 782 #ifdef VBOX_STRICT 782 783 /** 783 784 * Checks if the queue is empty or not. … … 790 791 return pQueue->pHead == NULL; 791 792 } 793 #endif /* VBOX_STRICT */ 792 794 793 795
Note:
See TracChangeset
for help on using the changeset viewer.