/third_party/python/Lib/test/ |
H A D | test_subprocess.py | 108 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 119 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 120 stderr=subprocess.PIPE) 133 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 134 stderr=subprocess.PIPE, bufsize=0) 309 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 326 code = ('import sys; from subprocess import Popen, PIPE;' [all...] |
H A D | test_cmd_line.py | 121 PIPE = subprocess.PIPE 122 p = subprocess.Popen(cmd, stdout=PIPE, stderr=PIPE) 234 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 268 return subprocess.run(cmd, stdout=subprocess.PIPE, text=True) 274 return subprocess.run(cmd, stdout=subprocess.PIPE, 279 return subprocess.run(cmd, stdout=subprocess.PIPE, text=True) 315 stdout=subprocess.PIPE, 330 proc = subprocess.run(args, stdout=subprocess.PIPE, [all...] |
H A D | test_pdb.py | 1714 stdout=subprocess.PIPE, 1715 stdin=subprocess.PIPE, 1812 stdout=subprocess.PIPE, 1813 stdin=subprocess.PIPE, 1896 stdout=subprocess.PIPE, 1897 stdin=subprocess.PIPE, 1926 stdout=subprocess.PIPE, 1927 stdin=subprocess.PIPE, 1982 stdout=subprocess.PIPE, 1983 stdin=subprocess.PIPE, [all...] |
/third_party/typescript/tests/ts_extra_tests/tool/ |
H A D | testcfg.py | 79 process = subprocess.Popen(self.__get_es2abc_cmd(filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
80 stderr=subprocess.PIPE)
122 process = subprocess.Popen(arkguard_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
234 process = subprocess.Popen(self.__get_tsc_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
235 stderr=subprocess.PIPE)
257 process = subprocess.Popen(self.__get_node_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
[all...] |
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_subprocess.py | 117 stdin=subprocess.PIPE, 118 stdout=subprocess.PIPE, 143 stdin=subprocess.PIPE, 144 stdout=subprocess.PIPE, 198 asyncio.create_subprocess_shell(blocking_shell_command, stdout=asyncio.subprocess.PIPE, 238 stdout=subprocess.PIPE, 264 stdin=subprocess.PIPE, 316 stdin=asyncio.subprocess.PIPE, 317 stdout=asyncio.subprocess.PIPE, 344 stdin=asyncio.subprocess.PIPE, [all...] |
/third_party/python/Lib/asyncio/ |
H A D | windows_utils.py | 17 __all__ = 'pipe', 'Popen', 'PIPE', 'PipeHandle' 24 PIPE = subprocess.PIPE variable 135 if stdin == PIPE: 140 if stdout == PIPE: 145 if stderr == PIPE: 168 if stdin == PIPE: 170 if stdout == PIPE: 172 if stderr == PIPE:
|
/third_party/node/deps/v8/tools/torque/ |
H A D | format-torque.py | 13 from subprocess import Popen, PIPE namespace 106 p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE, shell=True) 108 p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
/third_party/python/Lib/ctypes/ |
H A D | util.py | 125 stdout=subprocess.PIPE, 160 stdout=subprocess.PIPE, 182 stdout=subprocess.PIPE, 213 stdout=subprocess.PIPE, 244 stdout=subprocess.PIPE, 292 stdout=subprocess.PIPE, 311 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, 312 stderr=subprocess.PIPE,
|
/third_party/nghttp2/ |
H A D | git-clang-format | 237 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 264 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 343 p = subprocess.Popen(cmd, stdin=subprocess.PIPE) 365 clang_format = subprocess.Popen(clang_format_cmd, stdin=subprocess.PIPE, 366 stdout=subprocess.PIPE) 375 stdout=subprocess.PIPE) 460 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, [all...] |
/third_party/typescript/ |
H A D | compile_typescript.py | 23 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 24 stdin=subprocess.PIPE, 25 stderr=subprocess.PIPE,
|
/third_party/astc-encoder/Test/ |
H A D | astc_size_binary.py | 60 result = sp.run(args, stdout=sp.PIPE, stderr=sp.PIPE, 91 result = sp.run(args, stdout=sp.PIPE, stderr=sp.PIPE,
|
/third_party/skia/third_party/externals/harfbuzz/test/subset/ |
H A D | run-repack-tests.py | 34 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 97 stdin=subprocess.PIPE, 98 stdout=subprocess.PIPE,
|
H A D | run-tests.py | 34 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 133 stdin=subprocess.PIPE, 134 stdout=subprocess.PIPE,
|
/third_party/skia/third_party/externals/angle2/android/ |
H A D | compress_symbols.py | 34 stdout=subprocess.PIPE) 36 awk_cmd = subprocess.Popen(['awk', '{ print $1}'], stdin=nm_cmd.stdout, stdout=subprocess.PIPE) 45 stdout=subprocess.PIPE) 49 stdout=subprocess.PIPE)
|
/third_party/gn/misc/vim/ |
H A D | gn-format.py | 43 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 44 stdin=subprocess.PIPE, startupinfo=startupinfo,
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | optimization_test.py | 88 stdout=subprocess.PIPE, 89 stderr=subprocess.PIPE, 90 stdin=subprocess.PIPE)
|
/third_party/node/test/parallel/ |
H A D | test-cluster-net-server-drop-connection.js | 28 request(common.PIPE); 41 worker1 = cluster.fork({ maxConnections: 1, pipePath: common.PIPE }); 42 worker2 = cluster.fork({ maxConnections: 9, pipePath: common.PIPE });
|
H A D | test-net-pipe-connect-errors.js | 35 // On Win, common.PIPE will be a named pipe, so we use an existing empty 85 accessServer.listen(common.PIPE, common.mustCall(function() { 86 fs.chmodSync(common.PIPE, 0); 88 const accessClient = net.createConnection(common.PIPE, function() {
|
H A D | test-http-client-pipe-end.js | 40 server.listen(common.PIPE, function() { 42 socketPath: common.PIPE,
|
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | command.py | 126 stdout=subprocess.PIPE, 127 stderr=subprocess.PIPE, 195 stdout=subprocess.PIPE, 196 stderr=subprocess.PIPE, 216 stdout=subprocess.PIPE, 217 stderr=subprocess.PIPE,
|
/third_party/node/deps/v8/tools/sanitizers/ |
H A D | sancov_formatter.py | 177 stdout=subprocess.PIPE, 178 stderr=subprocess.PIPE, 179 stdin=subprocess.PIPE, 264 stdout=subprocess.PIPE, 265 stderr=subprocess.PIPE, 266 stdin=subprocess.PIPE,
|
/third_party/rust/crates/bindgen/csmith-fuzzing/ |
H A D | predicate.py | 208 child = run(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE) 239 stdout=subprocess.PIPE, 240 stderr=subprocess.PIPE) 257 stdout=subprocess.PIPE, 258 stderr=subprocess.PIPE)
|
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 104 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 120 result = subprocess.run(uncrustify_cmd, stdout=subprocess.PIPE, 121 stderr=subprocess.PIPE, check=False)
|
/third_party/node/deps/v8/third_party/ittapi/ |
H A D | buildall.py | 90 path, err = subprocess.Popen("which cmake", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() 92 path, err = subprocess.Popen("which xcrun", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
|
/third_party/typescript/tests/arkTSTest/ |
H A D | run_test.py | 19 p = subprocess.Popen("node run.js --detail", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|