/vbox/src/VBox/Main/src-client/ |
H A D | GuestCtrlImpl.cpp | 91 PVBOXGUESTCTRLHOSTCALLBACK pSvcCb = (PVBOXGUESTCTRLHOSTCALLBACK)pvData; 92 AssertPtr(pSvcCb); 94 if (!pSvcCb->mParms) /* At least context ID must be present. */ 98 int rc = pSvcCb->mpaParms[0].getUInt32(&uContextID); 99 AssertMsgRCReturn(rc, ("Unable to extract callback context ID, pvData=%p\n", pSvcCb), rc); 109 rc = pGuest->i_dispatchToSession(&ctxCb, pSvcCb); 222 int Guest::i_dispatchToSession(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 224 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb)); 227 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTE [all...] |
H A D | GuestDirectoryImpl.cpp | 173 int GuestDirectory::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 176 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); 178 LogFlowThisFunc(("strPath=%s, uContextID=%RU32, uFunction=%RU32, pSvcCb=%p\n", 179 mData.mOpenInfo.mPath.c_str(), pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb)); 188 /* pSvcCb->mpaParms[0] always contains the context ID. */ 189 pSvcCb->mpaParms[idx++].getUInt32(&dataCb.uType); 190 pSvcCb->mpaParms[idx++].getUInt32(&dataCb.rc);
|
H A D | GuestSessionImpl.cpp | 960 int GuestSession::i_dispatchToDirectory(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 962 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb)); 965 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); 967 if (pSvcCb->mParms < 3) 987 rc = pDirectory->i_callbackDispatcher(pCtxCb, pSvcCb); 996 int GuestSession::i_dispatchToFile(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 998 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb)); 1001 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTE 1029 i_dispatchToObject(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 1078 i_dispatchToProcess(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 1120 i_dispatchToThis(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument [all...] |
H A D | GuestCtrlPrivate.cpp | 873 int GuestBase::dispatchGeneric(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 875 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb)); 878 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); 885 pCtxCb->uFunction, pSvcCb->mParms)); 894 if (pSvcCb->mParms >= 3) 898 /* pSvcCb->mpaParms[0] always contains the context ID. */ 899 vrc = pSvcCb->mpaParms[idx++].getUInt32(&dataCb.uType); 901 vrc = pSvcCb->mpaParms[idx++].getUInt32(&dataCb.rc); 903 vrc = pSvcCb [all...] |
H A D | GuestProcessImpl.cpp | 405 int GuestProcess::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 408 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); 410 LogFlowThisFunc(("uPID=%RU32, uContextID=%RU32, uFunction=%RU32, pSvcCb=%p\n", 411 mData.mPID, pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb)); 419 vrc = i_onGuestDisconnected(pCbCtx, pSvcCb); 425 vrc = i_onProcessStatusChange(pCbCtx, pSvcCb); 431 vrc = i_onProcessOutput(pCbCtx, pSvcCb); 437 vrc = i_onProcessInputStatus(pCbCtx, pSvcCb); 594 /* pSvcCb->mpaParms[0] always contains the context ID. */ 668 /* pSvcCb [all...] |
H A D | GuestFileImpl.cpp | 364 int GuestFile::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) argument 367 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); 369 LogFlowThisFunc(("strName=%s, uContextID=%RU32, uFunction=%RU32, pSvcCb=%p\n", 370 mData.mOpenInfo.mFileName.c_str(), pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb)); 376 vrc = i_onGuestDisconnected(pCbCtx, pSvcCb); 380 vrc = i_onFileNotify(pCbCtx, pSvcCb); 479 /* pSvcCb->mpaParms[0] always contains the context ID. */
|
/vbox/src/VBox/Main/include/ |
H A D | GuestDirectoryImpl.h | 48 int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
|
H A D | GuestSessionImpl.h | 404 int i_dispatchToDirectory(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 405 int i_dispatchToFile(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 406 int i_dispatchToObject(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 407 int i_dispatchToProcess(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 408 int i_dispatchToThis(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
|
H A D | GuestFileImpl.h | 50 int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
|
H A D | GuestCtrlImplPrivate.h | 601 int dispatchGeneric(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 647 virtual int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) = 0;
|
H A D | GuestImpl.h | 98 int i_dispatchToSession(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
|
H A D | GuestProcessImpl.h | 48 int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
|