Home
last modified time | relevance | path

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

/external/grpc-grpc/src/python/grpcio_tests/tests/
D_runner.py145 stdout_pipe = CaptureFile(sys.stdout.fileno())
155 stdout_pipe.write_bypass(
157 signal_number, stdout_pipe.output(), stderr_pipe.output()))
162 stdout_pipe.write_bypass('Stopping tests short...')
164 stdout_pipe.write_bypass(result_out.getvalue())
165 stdout_pipe.write_bypass('\ninterrupted stdout:\n{}\n'.format(
166 stdout_pipe.output().decode()))
200 with stdout_pipe, stderr_pipe:
209 result.set_output(augmented_case.case, stdout_pipe.output(),
216 stdout_pipe.close()
/external/protobuf/src/google/protobuf/compiler/
Dsubprocess.cc308 int stdout_pipe[2]; in Start() local
311 GOOGLE_CHECK(pipe(stdout_pipe) != -1); in Start()
321 dup2(stdout_pipe[1], STDOUT_FILENO); in Start()
325 close(stdout_pipe[0]); in Start()
326 close(stdout_pipe[1]); in Start()
355 close(stdout_pipe[1]); in Start()
358 child_stdout_ = stdout_pipe[0]; in Start()
/external/python/cpython3/Lib/test/
Dtest_subprocess.py818 for stdout_pipe in (False, True):
823 if stdout_pipe: