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

/vbox/src/VBox/Runtime/r3/posix/
H A Dpipe-posix.cpp243 RTDECL(int) RTPipeFromNative(PRTPIPE phPipe, RTHCINTPTR hNativePipe, uint32_t fFlags) argument
245 AssertPtrReturn(phPipe, VERR_INVALID_POINTER);
281 *phPipe = pThis;
/vbox/src/VBox/Runtime/r3/os2/
H A Dpipe-os2.cpp263 RTDECL(int) RTPipeFromNative(PRTPIPE phPipe, RTHCINTPTR hNativePipe, uint32_t fFlags) argument
265 AssertPtrReturn(phPipe, VERR_INVALID_POINTER);
341 *phPipe = pThis;
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlProcess.cpp51 static int gstcntlProcessSetupPipe(const char *pszHowTo, int fd, PRTHANDLE ph, PRTHANDLE *pph, PRTPIPE phPipe);
896 * @param phPipe The pipe's object to initialize.
898 static int gstcntlProcessInitPipe(PRTHANDLE ph, PRTPIPE phPipe) argument
901 AssertPtrReturn(phPipe, VERR_INVALID_PARAMETER);
905 *phPipe = NIL_RTPIPE;
922 * @param phPipe Where to return the end of the pipe that we
926 PRTHANDLE ph, PRTHANDLE *pph, PRTPIPE phPipe)
930 AssertPtrReturn(phPipe, VERR_INVALID_POINTER);
937 *phPipe = NIL_RTPIPE;
944 * to represent the "other" end to phPipe
925 gstcntlProcessSetupPipe(const char *pszHowTo, int fd, PRTHANDLE ph, PRTHANDLE *pph, PRTPIPE phPipe) argument
1922 PRTPIPE phPipe = uHandle == OUTPUT_HANDLE_ID_STDOUT local
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dpipe-win.cpp433 RTDECL(int) RTPipeFromNative(PRTPIPE phPipe, RTHCINTPTR hNativePipe, uint32_t fFlags) argument
435 AssertPtrReturn(phPipe, VERR_INVALID_POINTER);
541 *phPipe = pThis;
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp2234 * @param phPipe Where to return the end of the pipe that we
2237 static int txsExecSetupRedir(PTXSEXEC pTxsExec, const char *pszHowTo, const char *pszStdWhat, int fd, PRTHANDLE ph, PRTHANDLE *pph, PRTPIPE phPipe) argument
2242 *phPipe = NIL_RTPIPE;
2251 rc = RTPipeCreate(&ph->u.hPipe, phPipe, RTPIPE_C_INHERIT_READ);
2253 rc = RTPipeCreate(phPipe, &ph->u.hPipe, RTPIPE_C_INHERIT_WRITE);

Completed in 48 milliseconds