Searched refs:child_stdout (Results 1 – 7 of 7) sorted by relevance
/external/minijail/ |
D | libminijail_unittest.cc | 490 int child_stdin, child_stdout; in TEST() local 492 j.get(), argv[0], argv, &pid, &child_stdin, &child_stdout, NULL); in TEST() 501 ssize_t read_ret = read(child_stdout, buf, sizeof(buf) - 1); in TEST() 526 &child_stdin, &child_stdout, &child_stderr); in TEST() 552 int child_stdin, child_stdout; in TEST() local 554 j.get(), argv[0], argv, &pid, &child_stdin, &child_stdout, NULL); in TEST() 563 ssize_t read_ret = read(child_stdout, buf, sizeof(buf) - 1); in TEST() 591 &child_stdin, &child_stdout, &child_stderr); in TEST() 606 int child_stdout; in TEST() local 628 j, argv[0], argv, &pid, NULL, &child_stdout, NULL); in TEST() [all …]
|
/external/tensorflow/tensorflow/python/platform/ |
D | stacktrace_handler_test.py | 60 child_stdout, child_stderr = child_process.communicate() 61 child_output = child_stdout + child_stderr
|
/external/python/cpython2/Doc/library/ |
D | subprocess.rst | 816 (child_stdin, child_stdout) = os.popen2("cmd", mode, bufsize) 820 (child_stdin, child_stdout) = (p.stdin, p.stdout) 825 child_stdout, 831 child_stdout, 848 (child_stdin, child_stdout) = os.popen2(["/bin/ls", "-l"], mode, 852 (child_stdin, child_stdout) = (p.stdin, p.stdout) 874 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) 878 (child_stdout, child_stdin) = (p.stdout, p.stdin) 884 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, 889 (child_stdout, child_stdin) = (p.stdout, p.stdin)
|
D | popen2.rst | 43 Executes *cmd* as a sub-process. Returns the file objects ``(child_stdout, 49 Executes *cmd* as a sub-process. Returns the file objects ``(child_stdout,
|
D | os.rst | 544 child_stdout)``. 558 child_stdout, child_stderr)``. 582 (Note that ``child_stdin, child_stdout, and child_stderr`` are named from the
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 1322 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) 1326 (child_stdin, child_stdout) = (p.stdin, p.stdout) 1331 child_stdout, 1337 child_stdout, 1373 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) 1377 (child_stdout, child_stdin) = (p.stdout, p.stdin) 1381 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) 1385 (child_stdout, child_stdin) = (p.stdout, p.stdin)
|
/external/rust/crates/bindgen/src/ |
D | lib.rs | 2406 let mut child_stdout = child.stdout.take().unwrap(); in rustfmt_generated_string() localVariable 2419 io::copy(&mut child_stdout, &mut output)?; in rustfmt_generated_string()
|