Home
last modified time | relevance | path

Searched refs:child_stdout (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Doc/library/
Dsubprocess.rst1359 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
1363 (child_stdin, child_stdout) = (p.stdin, p.stdout)
1368 child_stdout,
1374 child_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/
Dlib.rs2784 let mut child_stdout = child.stdout.take().unwrap(); in rustfmt_generated_string() localVariable
2797 io::copy(&mut child_stdout, &mut output)?; in rustfmt_generated_string()