Lines Matching refs:pipeOut
220 int pipeOut[2] = { -1, -1 };
235 if (pipe(pipeIn) < 0 || pipe(pipeOut) < 0 || pipe(pipeErr) < 0 || pipe(statusPipe) < 0)
240 closePipe(pipeOut);
254 closePipe(pipeOut);
267 close(pipeOut[0]);
282 if (pipeOut[1] != STDOUT_FILENO &&
283 dup2(pipeOut[1], STDOUT_FILENO) != STDOUT_FILENO)
285 close(pipeOut[1]);
330 closePipe(pipeOut);
351 close(pipeOut[1]);
355 process->standardOut = deFile_createFromHandle((deUintptr)pipeOut[0]);
362 close(pipeOut[0]);