Lines Matching refs:stdout_fds
272 int* stdout_fds,
275 close(stdout_fds[kReadFD]); // Don't need this in the child.
277 dup2(stdout_fds[kWriteFD], 1); // Dup pipe fd to stdout.
278 close(stdout_fds[kWriteFD]); // Don't need the original fd now.
480 int stdout_fds[2];
485 if (pipe(stdout_fds) != 0) {
491 ExecSubprocess(exec_error_fds, stdout_fds, exec_args);
498 close(stdout_fds[kWriteFD]);
500 OpenFDCloser stdout_read_closer(stdout_fds[kReadFD]);
504 Handle<Value> accumulator = GetStdout(stdout_fds[kReadFD],