Searched refs:pipe_stdout (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dpipe.c116 * parent <- fd[0] <- STDOUT_FILENO <- child if pipe_stdout
119 * At least one of pipe_stdin, pipe_stdout must be true.
121 * pipe_stdout and prog_stdout together determine the child's standard output.
123 * If pipe_stdout is true, prog_stdout is ignored.
128 bool pipe_stdin, bool pipe_stdout,
153 if (pipe_stdout)
163 * parent <- ifd[0] <- ifd[1] <- child if pipe_stdout
171 if (pipe_stdout || prog_stdout != NULL)
182 && (!pipe_stdout || dup2 (ifd[1], STDOUT_FILENO) >= 0)
194 && (pipe_stdout
126 create_pipe(const char *progname, const char *prog_path, char **prog_argv, bool pipe_stdin, bool pipe_stdout, const char *prog_stdin, const char *prog_stdout, bool null_stderr, bool slave_process, bool exit_on_error, int fd[2]) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dmisc.c362 int pipe_stdout[2]; local
364 if (pipe (pipe_stdout) == 0) {
368 close (pipe_stdout[0]);
369 dup2 (pipe_stdout[1],1);
379 ret=pipe_stdout[0];
380 close (pipe_stdout[1]);

Completed in 120 milliseconds