Searched refs:child_stdin (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Doc/library/ |
D | subprocess.rst | 1359 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) 1363 (child_stdin, child_stdout) = (p.stdin, p.stdout) 1367 (child_stdin, 1373 (child_stdin, 1379 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) 1383 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) 1410 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) 1414 (child_stdout, child_stdin) = (p.stdout, p.stdin) 1418 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) 1422 (child_stdout, child_stdin) = (p.stdout, p.stdin)
|
/third_party/rust/crates/bindgen/bindgen/ |
D | lib.rs | 2783 let mut child_stdin = child.stdin.take().unwrap(); in rustfmt_generated_string() localVariable 2792 let _ = child_stdin.write_all(source.as_bytes()); in rustfmt_generated_string()
|