Changeset 63259 in vbox
- Timestamp:
- Aug 10, 2016 12:37:42 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109891
- Location:
- trunk/src/VBox/Main
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c
r63177 r63259 1170 1170 LSTATUS rc; 1171 1171 char szClsId[CURLY_UUID_STR_BUF_SIZE]; 1172 RT_NOREF(pszAppId); 1172 1173 1173 1174 Assert(!pszAppId || *pszAppId == '{'); -
trunk/src/VBox/Main/src-client/AdditionsFacilityImpl.cpp
r62485 r63259 61 61 uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS) 62 62 { 63 RT_NOREF(a_pParent); 63 64 LogFlowThisFunc(("a_pParent=%p\n", a_pParent)); 64 65 -
trunk/src/VBox/Main/src-client/DisplaySourceBitmapImpl.cpp
r62485 r63259 118 118 DISPLAYFBINFO *pFBInfo) 119 119 { 120 RT_NOREF(aScreenId); 120 121 int rc = VINF_SUCCESS; 121 122 -
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r60622 r63259 188 188 pSvcCb->mpaParms[idx++].getUInt32(&dataCb.rc); 189 189 190 int guestRc = (int)dataCb.rc; /* uint32_t vs. int. */ 191 192 LogFlowFunc(("uType=%RU32, guestRc=%Rrc\n", 193 dataCb.uType, guestRc)); 190 LogFlowFunc(("uType=%RU32, vrcGguest=%Rrc\n", dataCb.uType, (int)dataCb.rc)); 194 191 195 192 switch (dataCb.uType) -
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r63158 r63259 281 281 int rcOp /* = VINF_SUCCESS */, const Utf8Str &strMsg /* = "" */) 282 282 { 283 RT_NOREF(rcOp); 283 284 LogFlowFunc(("uStatus=%RU32, uPercentage=%RU32, rcOp=%Rrc, strMsg=%s\n", 284 285 uStatus, uPercentage, rcOp, strMsg.c_str())); -
trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp
r63185 r63259 750 750 uint64_t cbSize, uint32_t fMode, uint32_t fFlags) 751 751 { 752 RT_NOREF(fFlags); 752 753 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); 753 754 AssertPtrReturn(pszPath, VERR_INVALID_POINTER); -
trunk/src/VBox/Main/src-client/Nvram.cpp
r62485 r63259 344 344 DECLCALLBACK(int) Nvram::drvNvram_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 345 345 { 346 RT_NOREF(fFlags); 346 347 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 347 348 LogFlowFunc(("iInstance/#%d pCfg=%p fFlags=%x\n", pDrvIns->iInstance, pCfg, fFlags)); -
trunk/src/VBox/Main/src-client/UsbWebcamInterface.cpp
r62824 r63259 241 241 const VRDEVIDEOINDEVICEDESC *pDeviceDesc, uint32_t cbDeviceDesc) 242 242 { 243 RT_NOREF(pvUser); 243 244 EMWEBCAMREMOTE *pRemote = (EMWEBCAMREMOTE *)pDeviceCtx; 244 245 Assert(pRemote == mpRemote); … … 269 270 const VRDEVIDEOINCTRLHDR *pControl, uint32_t cbControl) 270 271 { 272 RT_NOREF(rcRequest); 271 273 EMWEBCAMREMOTE *pRemote = (EMWEBCAMREMOTE *)pDeviceCtx; NOREF(pRemote); 272 274 Assert(pRemote == mpRemote); … … 293 295 const VRDEVIDEOINPAYLOADHDR *pFrame, uint32_t cbFrame) 294 296 { 297 RT_NOREF(rcRequest, pDeviceCtx); 295 298 LogFlowFunc(("rcRequest %Rrc %p %p %d\n", 296 299 rcRequest, pDeviceCtx, pFrame, cbFrame)); … … 384 387 /* static */ DECLCALLBACK(int) EmWebcam::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 385 388 { 389 RT_NOREF(fFlags); 386 390 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 387 391 LogFlowFunc(("iInstance:%d, pCfg:%p, fFlags:%x\n", pDrvIns->iInstance, pCfg, fFlags)); -
trunk/src/VBox/Main/src-client/VMMDevInterface.cpp
r63244 r63259 753 753 DECLCALLBACK(void) VMMDev::drvReset(PPDMDRVINS pDrvIns) 754 754 { 755 RT_NOREF(pDrvIns); 755 756 LogFlow(("VMMDev::drvReset: iInstance=%d\n", pDrvIns->iInstance)); 756 757 #ifdef VBOX_WITH_HGCM 757 HGCMHostReset 758 HGCMHostReset(); 758 759 #endif /* VBOX_WITH_HGCM */ 759 760 }
Note:
See TracChangeset
for help on using the changeset viewer.