Searched refs:child_stdin (Results 1 – 6 of 6) 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() 497 ssize_t write_ret = write(child_stdin, teststr, teststr_len); 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() 559 ssize_t write_ret = write(child_stdin, teststr, teststr_len); in TEST() 591 &child_stdin, &child_stdout, &child_stderr); in TEST() 953 int child_stdin, child_stdout; in TEST_F() local 956 &container_pid, &child_stdin, &child_stdout, nullptr); in TEST_F() [all …]
|
/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) 824 (child_stdin, 830 (child_stdin, 836 (child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode, 841 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.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) [all …]
|
D | popen2.rst | 44 child_stdin)``. 50 child_stdin, child_stderr)``. 56 ``(child_stdout_and_stderr, child_stdin)``.
|
D | os.rst | 543 Execute *cmd* as a sub-process and return the file objects ``(child_stdin, 557 Execute *cmd* as a sub-process and return the file objects ``(child_stdin, 571 Execute *cmd* as a sub-process and return the file objects ``(child_stdin, 582 (Note that ``child_stdin, child_stdout, and child_stderr`` are named from the 583 point of view of the child process, so *child_stdin* is the child's standard
|
/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) 1330 (child_stdin, 1336 (child_stdin, 1342 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) 1346 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.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 | 2405 let mut child_stdin = child.stdin.take().unwrap(); in rustfmt_generated_string() localVariable 2414 let _ = child_stdin.write_all(source.as_bytes()); in rustfmt_generated_string()
|