Home
last modified time | relevance | path

Searched refs:outPipe (Results 1 – 1 of 1) sorted by relevance

/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp286 int inPipe[2], outPipe[2], errPipe[2]; in _PipeCommand() local
291 if (pipe(outPipe) < 0) in _PipeCommand()
301 dup2(outPipe[1], STDOUT_FILENO); in _PipeCommand()
302 close(outPipe[1]); in _PipeCommand()
308 out = outPipe[0]; // Read from out, taken from cmd's stdout in _PipeCommand()
329 close(outPipe[0]); in _PipeCommand()
330 close(outPipe[1]); in _PipeCommand()