Searched defs:phReq (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/common/misc/
H A Dreq.cpp59 * @param phReq Where to return the request handle.
61 DECLHIDDEN(int) rtReqAlloc(RTREQTYPE enmType, bool fPoolOrQueue, void *pvOwner, PRTREQ *phReq) argument
88 *phReq = pReq;
H A Dreqqueue.cpp340 RTDECL(int) RTReqQueueAlloc(RTREQQUEUE hQueue, RTREQTYPE enmType, PRTREQ *phReq) argument
375 *phReq = pReq;
376 LogFlow(("RTReqQueueAlloc: returns VINF_SUCCESS *phReq=%p recycled\n", pReq));
385 int rc = rtReqAlloc(enmType, false /*fPoolOrQueue*/, pQueue, phReq);
386 LogFlow(("RTReqQueueAlloc: returns %Rrc *phReq=%p\n", rc, *phReq));
/vbox/include/iprt/
H A Dfile.h1251 * @param phReq Where to store the request handle.
1253 RTDECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq); variable
/vbox/src/VBox/Runtime/r3/freebsd/
H A Dfileaio-freebsd.cpp143 RTR3DECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq) argument
145 AssertPtrReturn(phReq, VERR_INVALID_POINTER);
158 *phReq = (RTFILEAIOREQ)pReqInt;
/vbox/src/VBox/Runtime/r3/solaris/
H A Dfileaio-solaris.cpp111 RTR3DECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq) argument
113 AssertPtrReturn(phReq, VERR_INVALID_POINTER);
127 *phReq = (RTFILEAIOREQ)pReqInt;
/vbox/src/VBox/Runtime/r3/win/
H A Dfileaio-win.cpp136 RTR3DECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq) argument
138 AssertPtrReturn(phReq, VERR_INVALID_POINTER);
149 *phReq = (RTFILEAIOREQ)pReqInt;
/vbox/src/VBox/VMM/VMMR3/
H A DPDMAsyncCompletionFileNormal.cpp762 PPDMACTASKFILE pTask, PRTFILEAIOREQ phReq)
825 *phReq = hReq;
836 PPDMACTASKFILE pTask, PRTFILEAIOREQ phReq)
954 *phReq = hReq;
760 pdmacFileAioMgrNormalTaskPrepareBuffered(PPDMACEPFILEMGR pAioMgr, PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint, PPDMACTASKFILE pTask, PRTFILEAIOREQ phReq) argument
834 pdmacFileAioMgrNormalTaskPrepareNonBuffered(PPDMACEPFILEMGR pAioMgr, PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint, PPDMACTASKFILE pTask, PRTFILEAIOREQ phReq) argument
/vbox/src/VBox/Runtime/r3/linux/
H A Dfileaio-linux.cpp321 RTR3DECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq) argument
323 AssertPtrReturn(phReq, VERR_INVALID_POINTER);
336 *phReq = (RTFILEAIOREQ)pReqInt;
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileaio-posix.cpp351 RTR3DECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq) argument
353 AssertPtrReturn(phReq, VERR_INVALID_POINTER);
364 *phReq = (RTFILEAIOREQ)pReqInt;

Completed in 56 milliseconds