Home
last modified time | relevance | path

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

/external/v8/src/
Dd8-posix.cc272 int* stdout_fds, in ExecSubprocess() argument
275 close(stdout_fds[kReadFD]); // Don't need this in the child. in ExecSubprocess()
277 dup2(stdout_fds[kWriteFD], 1); // Dup pipe fd to stdout. in ExecSubprocess()
278 close(stdout_fds[kWriteFD]); // Don't need the original fd now. in ExecSubprocess()
480 int stdout_fds[2]; in System() local
485 if (pipe(stdout_fds) != 0) { in System()
491 ExecSubprocess(exec_error_fds, stdout_fds, exec_args); in System()
498 close(stdout_fds[kWriteFD]); in System()
500 OpenFDCloser stdout_read_closer(stdout_fds[kReadFD]); in System()
504 Handle<Value> accumulator = GetStdout(stdout_fds[kReadFD], in System()