Lines Matching defs:ph
2230 * @param ph The generic handle that @a pph may be set
2237 static int txsExecSetupRedir(PTXSEXEC pTxsExec, const char *pszHowTo, const char *pszStdWhat, int fd, PRTHANDLE ph, PRTHANDLE *pph, PRTPIPE phPipe)
2239 ph->enmType = RTHANDLETYPE_PIPE;
2240 ph->u.hPipe = NIL_RTPIPE;
2251 rc = RTPipeCreate(&ph->u.hPipe, phPipe, RTPIPE_C_INHERIT_READ);
2253 rc = RTPipeCreate(phPipe, &ph->u.hPipe, RTPIPE_C_INHERIT_WRITE);
2256 ph->enmType = RTHANDLETYPE_PIPE;
2257 *pph = ph;
2269 ph->enmType = RTHANDLETYPE_FILE;
2270 ph->u.hFile = hFile;
2271 *pph = ph;
2298 ph->enmType = RTHANDLETYPE_FILE;
2299 ph->u.hFile = hFile;
2300 *pph = ph;