Home
last modified time | relevance | path

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

/external/v8/src/
Dd8-posix.cc255 int* stdout_fds, in ExecSubprocess() argument
258 close(stdout_fds[kReadFD]); // Don't need this in the child. in ExecSubprocess()
260 dup2(stdout_fds[kWriteFD], 1); // Dup pipe fd to stdout. in ExecSubprocess()
261 close(stdout_fds[kWriteFD]); // Don't need the original fd now. in ExecSubprocess()
475 int stdout_fds[2]; in System() local
482 if (pipe(stdout_fds) != 0) { in System()
490 ExecSubprocess(exec_error_fds, stdout_fds, exec_args); in System()
497 close(stdout_fds[kWriteFD]); in System()
499 OpenFDCloser stdout_read_closer(stdout_fds[kReadFD]); in System()
504 stdout_fds[kReadFD], in System()