/third_party/python/Lib/test/ |
D | test_subprocess.py | 115 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 116 stderr=subprocess.PIPE) 129 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 130 stderr=subprocess.PIPE, bufsize=0) 291 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 313 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 323 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 411 stdout=subprocess.PIPE, 507 stdin=subprocess.PIPE) 542 stdout=subprocess.PIPE) [all …]
|
D | test_cmd_line.py | 96 PIPE = subprocess.PIPE 97 p = subprocess.Popen(cmd, stdout=PIPE, stderr=PIPE) 182 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 217 return subprocess.run(cmd, stdout=subprocess.PIPE, text=True) 223 return subprocess.run(cmd, stdout=subprocess.PIPE, 228 return subprocess.run(cmd, stdout=subprocess.PIPE, text=True) 264 stdout=subprocess.PIPE, 279 proc = subprocess.run(args, stdout=subprocess.PIPE, 280 stderr=subprocess.PIPE, text=True, check=True) 349 stdin=subprocess.PIPE, [all …]
|
D | test_pdb.py | 1364 stdout=subprocess.PIPE, 1365 stdin=subprocess.PIPE, 1457 stdout=subprocess.PIPE, 1458 stdin=subprocess.PIPE, 1520 stdout=subprocess.PIPE, 1521 stdin=subprocess.PIPE, 1550 stdout=subprocess.PIPE, 1551 stdin=subprocess.PIPE, 1604 stdout=subprocess.PIPE, 1605 stdin=subprocess.PIPE, [all …]
|
/third_party/typescript/tests/ts_extra_tests/tool/ |
D | testcfg.py | 163 … = subprocess.Popen(self.__get_es2abc_cmd(filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 164 stderr=subprocess.PIPE) 196 … process = subprocess.Popen(self.__get_tsc_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 197 stderr=subprocess.PIPE) 219 … process = subprocess.Popen(self.__get_node_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 220 stderr=subprocess.PIPE) 241 …= subprocess.Popen(self.__get_es2abc_cmd(self.path), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 242 stderr=subprocess.PIPE) 260 … process = subprocess.Popen(self._get_ark_js_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 261 stderr=subprocess.PIPE)
|
/third_party/cef/tools/ |
D | exec_util.py | 6 from subprocess import Popen, PIPE 21 stdout=PIPE, 22 stderr=PIPE, 30 stdin=PIPE, 31 stdout=PIPE, 32 stderr=PIPE,
|
/third_party/python/Lib/asyncio/ |
D | windows_utils.py | 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/python/Lib/test/test_asyncio/ |
D | test_subprocess.py | 115 stdin=subprocess.PIPE, 116 stdout=subprocess.PIPE, 141 stdin=subprocess.PIPE, 142 stdout=subprocess.PIPE, 209 stdout=subprocess.PIPE, 235 stdin=subprocess.PIPE, 287 stdin=asyncio.subprocess.PIPE, 288 stdout=asyncio.subprocess.PIPE, 315 stdin=asyncio.subprocess.PIPE, 316 stdout=asyncio.subprocess.PIPE, [all …]
|
/third_party/nghttp2/ |
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, 461 stdin=subprocess.PIPE)
|
/third_party/node/deps/v8/tools/torque/ |
D | format-torque.py | 13 from subprocess import Popen, PIPE 106 …p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE, shell=Tr… 108 p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
/third_party/python/Lib/ctypes/ |
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/typescript/ |
D | compile_typescript.py | 23 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 24 stdin=subprocess.PIPE, 25 stderr=subprocess.PIPE,
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/htmldiff/ |
D | htmldiff | 37 from subprocess import Popen, PIPE 91 stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
/third_party/mbedtls/scripts/ |
D | code_style.py | 75 result = subprocess.run(git_ls_files_cmd, stdout=subprocess.PIPE, 97 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 113 result = subprocess.run(uncrustify_cmd, stdout=subprocess.PIPE, 114 stderr=subprocess.PIPE, check=False)
|
/third_party/node/benchmark/http/ |
D | http_server_for_chunky_client.js | 7 const { PIPE } = require('../../test/common'); 9 process.env.PIPE_NAME = PIPE; 27 server.listen(PIPE);
|
/third_party/skia/third_party/externals/harfbuzz/test/subset/ |
D | run-repack-tests.py | 34 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 97 stdin=subprocess.PIPE, 98 stdout=subprocess.PIPE,
|
/third_party/astc-encoder/Test/ |
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/angle2/android/ |
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/rust/crates/bindgen/csmith-fuzzing/ |
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/node/test/parallel/ |
D | test-tls-wrap-econnreset-pipe.js | 33 }).listen(common.PIPE, common.mustCall(() => { 35 tls.connect({ path: common.PIPE }) 38 assert.strictEqual(e.path, common.PIPE);
|
D | test-net-pipe-connect-errors.js | 85 accessServer.listen(common.PIPE, common.mustCall(function() { 86 fs.chmodSync(common.PIPE, 0); 88 const accessClient = net.createConnection(common.PIPE, function() {
|
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 });
|
/third_party/gn/misc/vim/ |
D | gn-format.py | 43 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 44 stdin=subprocess.PIPE, startupinfo=startupinfo,
|
/third_party/python/Doc/library/ |
D | asyncio-subprocess.rst | 27 stdout=asyncio.subprocess.PIPE, 28 stderr=asyncio.subprocess.PIPE) 71 (if :attr:`subprocess.PIPE` is passed to *stdout* and *stderr* arguments). 93 (if :attr:`subprocess.PIPE` is passed to *stdout* and *stderr* arguments). 134 .. data:: asyncio.subprocess.PIPE 138 If *PIPE* is passed to *stdin* argument, the 142 If *PIPE* is passed to *stdout* or *stderr* arguments, the 203 This method can deadlock when using ``stdout=PIPE`` or 204 ``stderr=PIPE`` and the child process generates so much output 228 the process needs to be created with ``stdin=PIPE``. Similarly, [all …]
|
/third_party/node/deps/v8/tools/sanitizers/ |
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/node/deps/v8/tools/testrunner/local/ |
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,
|