Searched refs:pSvcCbData (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Main/include/ |
H A D | GuestProcessImpl.h | 80 int i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 81 int i_onProcessInputStatus(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 82 int i_onProcessNotifyIO(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 83 int i_onProcessStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 84 int i_onProcessOutput(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
|
H A D | GuestFileImpl.h | 54 int i_onFileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 55 int i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
|
H A D | GuestSessionImpl.h | 424 int i_onSessionStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
|
/vbox/src/VBox/Main/src-client/ |
H A D | GuestProcessImpl.cpp | 573 int GuestProcess::i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 576 AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER); 584 int GuestProcess::i_onProcessInputStatus(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 587 AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER); 590 if (pSvcCbData->mParms < 5) 595 int vrc = pSvcCbData->mpaParms[1].getUInt32(&dataCb.uPID); 597 vrc = pSvcCbData->mpaParms[2].getUInt32(&dataCb.uStatus); 599 vrc = pSvcCbData->mpaParms[3].getUInt32(&dataCb.uFlags); 601 vrc = pSvcCbData->mpaParms[4].getUInt32(&dataCb.uProcessed); 651 int GuestProcess::i_onProcessNotifyIO(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 659 i_onProcessStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 769 i_onProcessOutput(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument [all...] |
H A D | GuestFileImpl.cpp | 465 int GuestFile::i_onFileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 468 AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER); 472 if (pSvcCbData->mParms < 3) 480 pSvcCbData->mpaParms[idx++].getUInt32(&dataCb.uType); 481 pSvcCbData->mpaParms[idx++].getUInt32(&dataCb.rc); 513 if (pSvcCbData->mParms == 4) 515 pSvcCbData->mpaParms[idx++].getUInt32(&dataCb.u.open.uHandle); 548 if (pSvcCbData->mParms == 4) 550 pSvcCbData->mpaParms[idx++].getPointer(&dataCb.u.read.pvData, 573 if (pSvcCbData 651 i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument [all...] |
H A D | GuestSessionImpl.cpp | 1526 int GuestSession::i_onSessionStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument 1530 AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER); 1532 if (pSvcCbData->mParms < 3) 1537 int vrc = pSvcCbData->mpaParms[1].getUInt32(&dataCb.uType); 1539 vrc = pSvcCbData->mpaParms[2].getUInt32(&dataCb.uResult);
|
Completed in 2911 milliseconds