Changeset 104001 in vbox for trunk/src/VBox
- Timestamp:
- Mar 22, 2024 4:03:33 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162388
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestFileImpl.h
r98278 r104001 69 69 /** @name Public internal methods. 70 70 * @{ */ 71 int i_close File(int *pGuestRc);71 int i_close(int *pGuestRc); 72 72 EventSource *i_getEventSource(void) { return mEventSource; } 73 int i_on FileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);73 int i_onNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 74 74 int i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 75 int i_open File(uint32_t uTimeoutMS, int *pGuestRc);75 int i_open(uint32_t uTimeoutMS, int *pGuestRc); 76 76 int i_queryInfo(GuestFsObjData &objData, int *prcGuest); 77 77 int i_readData(uint32_t uSize, uint32_t uTimeoutMS, void* pvData, uint32_t cbData, uint32_t* pcbRead); -
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r99252 r104001 368 368 369 369 case GUEST_MSG_FILE_NOTIFY: 370 vrc = i_on FileNotify(pCbCtx, pSvcCb);370 vrc = i_onNotify(pCbCtx, pSvcCb); 371 371 break; 372 372 … … 391 391 * was returned. 392 392 */ 393 int GuestFile::i_close File(int *prcGuest)393 int GuestFile::i_close(int *prcGuest) 394 394 { 395 395 LogFlowThisFunc(("strFile=%s\n", mData.mOpenInfo.mFilename.c_str())); … … 473 473 * @param pSvcCbData Host callback data. 474 474 */ 475 int GuestFile::i_on FileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData)475 int GuestFile::i_onNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) 476 476 { 477 477 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER); … … 792 792 * was returned. Optional. 793 793 */ 794 int GuestFile::i_open File(uint32_t uTimeoutMS, int *prcGuest)794 int GuestFile::i_open(uint32_t uTimeoutMS, int *prcGuest) 795 795 { 796 796 AssertReturn(mData.mOpenInfo.mFilename.isNotEmpty(), VERR_INVALID_PARAMETER); … … 1528 1528 /* Close file on guest. */ 1529 1529 int vrcGuest = VERR_IPE_UNINITIALIZED_STATUS; 1530 int vrc = i_close File(&vrcGuest);1530 int vrc = i_close(&vrcGuest); 1531 1531 if (RT_FAILURE(vrc)) 1532 1532 { -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r102833 r104001 1990 1990 { 1991 1991 int vrcGuest = VERR_IPE_UNINITIALIZED_STATUS; 1992 vrc = pFile->i_open File(30 * 1000 /* 30s timeout */, &vrcGuest);1992 vrc = pFile->i_open(30 * 1000 /* 30s timeout */, &vrcGuest); 1993 1993 if ( vrc == VERR_GSTCTL_GUEST_ERROR 1994 1994 && pvrcGuest) -
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r103244 r104001 505 505 { 506 506 int vrcGuest; 507 int vrc = file->i_close File(&vrcGuest);507 int vrc = file->i_close(&vrcGuest); 508 508 if (RT_FAILURE(vrc)) 509 509 {
Note:
See TracChangeset
for help on using the changeset viewer.