Searched defs:pCbCtx (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DGuestDirectoryImpl.cpp173 int GuestDirectory::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument
175 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
179 mData.mOpenInfo.mPath.c_str(), pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb));
182 switch (pCbCtx->uFunction)
H A DGuestFileImpl.cpp364 int GuestFile::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument
366 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
370 mData.mOpenInfo.mFileName.c_str(), pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb));
373 switch (pCbCtx->uFunction)
376 vrc = i_onGuestDisconnected(pCbCtx, pSvcCb);
380 vrc = i_onFileNotify(pCbCtx, pSvcCb);
465 int GuestFile::i_onFileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument
467 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
494 rc2 = signalWaitEventInternal(pCbCtx,
651 i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument
[all...]
H A DGuestCtrlPrivate.cpp1090 int GuestBase::signalWaitEventInternal(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, argument
1094 return signalWaitEventInternalEx(pCbCtx, VINF_SUCCESS,
1097 return signalWaitEventInternalEx(pCbCtx, VERR_GSTCTL_GUEST_ERROR,
1101 int GuestBase::signalWaitEventInternalEx(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, argument
1105 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
1109 GuestWaitEvents::iterator itEvent = mWaitEvents.find(pCbCtx->uContextID);
H A DGuestProcessImpl.cpp405 int GuestProcess::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument
407 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
411 mData.mPID, pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb));
415 switch (pCbCtx->uFunction)
419 vrc = i_onGuestDisconnected(pCbCtx, pSvcCb);
425 vrc = i_onProcessStatusChange(pCbCtx, pSvcCb);
431 vrc = i_onProcessOutput(pCbCtx, pSvcCb);
437 vrc = i_onProcessInputStatus(pCbCtx, pSvcCb);
573 int GuestProcess::i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBAC argument
584 i_onProcessInputStatus(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument
651 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 DGuestSessionImpl.cpp1120 int GuestSession::i_dispatchToThis(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument
1122 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);
1129 mData.mSession.mID, pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb));
1133 switch (pCbCtx->uFunction)
1142 rc = i_onSessionStatusChange(pCbCtx, pSvcCb);
1526 int GuestSession::i_onSessionStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData) argument
1528 AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER);

Completed in 145 milliseconds