Home
last modified time | relevance | path

Searched refs:PIPE (Results 1 - 25 of 308) sorted by relevance

12345678910>>...13

/third_party/python/Lib/test/
H A Dtest_subprocess.py108 """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 Dtest_cmd_line.py121 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 Dtest_pdb.py1714 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 Dtestcfg.py79 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 Dtest_subprocess.py117 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 Dwindows_utils.py17 __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 Dformat-torque.py13 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 Dutil.py125 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 Dgit-clang-format237 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 Dcompile_typescript.py23 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
24 stdin=subprocess.PIPE,
25 stderr=subprocess.PIPE,
/third_party/astc-encoder/Test/
H A Dastc_size_binary.py60 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 Drun-repack-tests.py34 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
97 stdin=subprocess.PIPE,
98 stdout=subprocess.PIPE,
H A Drun-tests.py34 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 Dcompress_symbols.py34 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 Dgn-format.py43 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
44 stdin=subprocess.PIPE, startupinfo=startupinfo,
/third_party/mesa3d/src/compiler/glsl/tests/
H A Doptimization_test.py88 stdout=subprocess.PIPE,
89 stderr=subprocess.PIPE,
90 stdin=subprocess.PIPE)
/third_party/node/test/parallel/
H A Dtest-cluster-net-server-drop-connection.js28 request(common.PIPE);
41 worker1 = cluster.fork({ maxConnections: 1, pipePath: common.PIPE });
42 worker2 = cluster.fork({ maxConnections: 9, pipePath: common.PIPE });
H A Dtest-net-pipe-connect-errors.js35 // 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 Dtest-http-client-pipe-end.js40 server.listen(common.PIPE, function() {
42 socketPath: common.PIPE,
/third_party/node/deps/v8/tools/testrunner/local/
H A Dcommand.py126 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 Dsancov_formatter.py177 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 Dpredicate.py208 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 Dcode_style.py104 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 Dbuildall.py90 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 Drun_test.py19 p = subprocess.Popen("node run.js --detail", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)

Completed in 13 milliseconds

12345678910>>...13