Lines Matching refs:pSvcCb

960 int GuestSession::i_dispatchToDirectory(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb)
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)
998 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb));
1001 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER);
1020 rc = pFile->i_callbackDispatcher(pCtxCb, pSvcCb);
1029 int GuestSession::i_dispatchToObject(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb)
1031 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb));
1034 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER);
1052 rc = i_dispatchToFile(pCtxCb, pSvcCb);
1061 rc = i_dispatchToDirectory(pCtxCb, pSvcCb);
1071 rc = i_dispatchToProcess(pCtxCb, pSvcCb);
1078 int GuestSession::i_dispatchToProcess(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb)
1080 LogFlowFunc(("pCtxCb=%p, pSvcCb=%p\n", pCtxCb, pSvcCb));
1083 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER);
1106 /* Set protocol version so that pSvcCb can
1111 rc = pProcess->i_callbackDispatcher(pCtxCb, pSvcCb);
1120 int GuestSession::i_dispatchToThis(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb)
1123 AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER);
1128 LogFlowThisFunc(("sessionID=%RU32, CID=%RU32, uFunction=%RU32, pSvcCb=%p\n",
1129 mData.mSession.mID, pCbCtx->uContextID, pCbCtx->uFunction, pSvcCb));
1142 rc = i_onSessionStatusChange(pCbCtx, pSvcCb);
1536 /* pSvcCb->mpaParms[0] always contains the context ID. */