Changeset 49962 in vbox for trunk/src/VBox/Main/src-server/solaris/USBProxyServiceSolaris.cpp
- Timestamp:
- Dec 17, 2013 6:48:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/solaris/USBProxyServiceSolaris.cpp
r48016 r49962 340 340 341 341 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 342 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));343 344 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_Capturing);342 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 343 344 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_Capturing); 345 345 AssertReturn(aDevice->mUsb, VERR_INVALID_POINTER); 346 346 … … 379 379 * Remove the one-shot filter if necessary. 380 380 */ 381 LogFlowThisFunc(("aDevice=%s aSuccess=%RTbool mOneShotId=%p\n", aDevice-> getName().c_str(), aSuccess, aDevice->mOneShotId));381 LogFlowThisFunc(("aDevice=%s aSuccess=%RTbool mOneShotId=%p\n", aDevice->_getName().c_str(), aSuccess, aDevice->mOneShotId)); 382 382 if (!aSuccess && aDevice->mOneShotId) 383 383 USBLibRemoveFilter(aDevice->mOneShotId); … … 395 395 396 396 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 397 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));398 399 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_ReleasingToHost);397 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 398 399 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_ReleasingToHost); 400 400 AssertReturn(aDevice->mUsb, VERR_INVALID_POINTER); 401 401 … … 434 434 * Remove the one-shot filter if necessary. 435 435 */ 436 LogFlowThisFunc(("aDevice=%s aSuccess=%RTbool mOneShotId=%p\n", aDevice-> getName().c_str(), aSuccess, aDevice->mOneShotId));436 LogFlowThisFunc(("aDevice=%s aSuccess=%RTbool mOneShotId=%p\n", aDevice->i_getName().c_str(), aSuccess, aDevice->mOneShotId)); 437 437 if (!aSuccess && aDevice->mOneShotId) 438 438 USBLibRemoveFilter(aDevice->mOneShotId);
Note:
See TracChangeset
for help on using the changeset viewer.