Home | History | Annotate | Download | only in info

Lines Matching defs:pipes

281   int pipes[2];
302 in FORMATTED_PAGE. The reader end of the pipe is pipes[0]; the
303 writer end is pipes[1]. */
305 pipe (pipes);
317 close (pipes[1]);
318 formatted_page = read_from_fd (pipes[0]);
319 close (pipes[0]);
325 close (pipes[0]);
328 dup2 (pipes[1], fileno (stdout));
334 close (pipes[1]);