Home
last modified time | relevance | path

Searched refs:stdout_pipe (Results 1 - 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/tint/src/utils/io/
H A Dcommand_posix.cc151 Pipe stdout_pipe; in Exec() local
154 if (!stdin_pipe || !stdout_pipe || !stderr_pipe) { in Exec()
183 stdout_pipe.write.Close(); in Exec()
199 poll_fds[0].fd = stdout_pipe.read; in Exec()
213 auto n = read(stdout_pipe.read, buf, sizeof(buf)); in Exec()
241 (dup2(stdout_pipe.write, STDOUT_FILENO) == -1) || in Exec()
249 stdout_pipe.Close(); in Exec()
H A Dcommand_windows.cc151 Pipe stdout_pipe(true); in Exec()
154 if (!stdin_pipe || !stdout_pipe || !stderr_pipe) { in Exec()
173 si.hStdOutput = stdout_pipe.write; in Exec()
200 stdout_pipe.write.Close(); in Exec()
219 StreamReadThreadArgs stdout_read_args{stdout_pipe.read, {}}; in Exec()
/third_party/libuv/docs/code/uvtee/
H A Dmain.c15 uv_pipe_t stdout_pipe; variable
48 uv_close((uv_handle_t *)&stdout_pipe, NULL); in read_stdin()
52 write_data((uv_stream_t *)&stdout_pipe, nread, *buf, on_stdout_write); in read_stdin()
67 uv_pipe_init(loop, &stdout_pipe, 0); in main()
68 uv_pipe_open(&stdout_pipe, 1); in main()
/third_party/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc307 int stdout_pipe[2];
310 GOOGLE_CHECK(pipe(stdout_pipe) != -1);
320 dup2(stdout_pipe[1], STDOUT_FILENO);
324 close(stdout_pipe[0]);
325 close(stdout_pipe[1]);
354 close(stdout_pipe[1]);
357 child_stdout_ = stdout_pipe[0];
/third_party/python/Lib/test/
H A Dtest_subprocess.py934 for stdout_pipe in (False, True):
939 if stdout_pipe:

Completed in 7 milliseconds