/third_party/python/Lib/test/ |
D | test_subprocess.py | 103 class PopenExecuteChildRaises(subprocess.Popen): 114 p = subprocess.Popen(ZERO_RETURN_CMD, 128 p = subprocess.Popen(ZERO_RETURN_CMD, 282 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1) 283 argcount = subprocess.Popen.__init__.__code__.co_argcount 285 self.assertRaises(TypeError, subprocess.Popen, *too_many_args) 290 p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], 312 p = subprocess.Popen([sys.executable, "-c", code], 322 p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], 333 p = subprocess.Popen(args, **kwargs) [all …]
|
/third_party/skia/third_party/externals/angle2/android/ |
D | compress_symbols.py | 33 nm_cmd = subprocess.Popen([args.nm, '-D', args.output, '--format=posix', '--defined-only'], 36 awk_cmd = subprocess.Popen(['awk', '{ print $1}'], stdin=nm_cmd.stdout, stdout=subprocess.PIPE) 39 sort_cmd = subprocess.Popen(['sort'], stdin=awk_cmd.stdout, stdout=dynsym_out) 44 nm_cmd = subprocess.Popen([args.nm, args.output, '--format=posix', '--defined-only'], 47 awk_cmd = subprocess.Popen(['awk', '{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 }'], 51 sort_cmd = subprocess.Popen(['sort'], stdin=awk_cmd.stdout, stdout=funcsyms_out) 56 comm_cmd = subprocess.Popen(
|
/third_party/python/Doc/library/ |
D | subprocess.rst | 34 underlying :class:`Popen` interface can be used directly. 51 same as that of the :class:`Popen` constructor - most of the arguments to 56 When used, the internal :class:`Popen` object is automatically created with 62 The *timeout* argument is passed to :meth:`Popen.communicate`. If the timeout 67 The *input* argument is passed to :meth:`Popen.communicate` and thus to the 70 used, the internal :class:`Popen` object is automatically created with 87 to :class:`Popen`. 155 to :class:`Popen` and indicates that the special file :data:`os.devnull` 164 to :class:`Popen` and indicates that a pipe to the standard stream should be 165 opened. Most useful with :meth:`Popen.communicate`. [all …]
|
/third_party/python/Lib/multiprocessing/ |
D | context.py | 276 from .popen_fork import Popen 277 return Popen(process_obj) 283 from .popen_spawn_posix import Popen 284 return Popen(process_obj) 290 from .popen_forkserver import Popen 291 return Popen(process_obj) 326 from .popen_spawn_win32 import Popen 327 return Popen(process_obj)
|
D | popen_spawn_posix.py | 26 class Popen(popen_fork.Popen): class
|
D | popen_forkserver.py | 29 class Popen(popen_fork.Popen): class
|
/third_party/python/Lib/ctypes/ |
D | util.py | 124 proc = subprocess.Popen(args, 159 proc = subprocess.Popen(("/usr/ccs/bin/dump", "-Lpv", f), 181 proc = subprocess.Popen((objdump, '-p', '-j', '.dynamic', f), 212 proc = subprocess.Popen(('/sbin/ldconfig', '-r'), 243 proc = subprocess.Popen(args, 289 with subprocess.Popen(['/sbin/ldconfig', '-p'], 311 p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
/third_party/typescript/tests/ts_extra_tests/tool/ |
D | testcfg.py | 179 …process = subprocess.Popen(self.__get_es2abc_cmd(filename), stdin=subprocess.PIPE, stdout=subproce… 214 … process = subprocess.Popen(self.__get_tsc_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 237 … process = subprocess.Popen(self.__get_node_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 272 process = subprocess.Popen(arkguard_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 285 …process = subprocess.Popen(self.__get_es2abc_cmd(self.path), stdin=subprocess.PIPE, stdout=subproc… 304 … process = subprocess.Popen(self._get_ark_js_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
/third_party/python/Lib/ |
D | webbrowser.py | 178 p = subprocess.Popen(cmdline) 180 p = subprocess.Popen(cmdline, close_fds=True) 196 p = subprocess.Popen(cmdline) 198 p = subprocess.Popen(cmdline, close_fds=True, 237 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 369 p = subprocess.Popen(["kfmclient", action, url], 381 p = subprocess.Popen(["konqueror", "--silent", url], 394 p = subprocess.Popen(["kfm", "-d", url],
|
/third_party/vixl/tools/ |
D | clang_format.py | 98 p_format = subprocess.Popen(cmd_format, 105 p_diff = subprocess.Popen(cmd_diff, 109 p_colordiff = subprocess.Popen( 121 p_format = subprocess.Popen(cmd_format,
|
/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, 374 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout, 460 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | win_tool.py | 135 link = subprocess.Popen( 253 popen = subprocess.Popen( 297 popen = subprocess.Popen( 316 popen = subprocess.Popen( 334 popen = subprocess.Popen(
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | win_tool.py | 135 link = subprocess.Popen( 252 popen = subprocess.Popen( 296 popen = subprocess.Popen( 315 popen = subprocess.Popen( 333 popen = subprocess.Popen(
|
/third_party/python/Lib/test/subprocessdata/ |
D | sigchild_ignore.py | 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
D | foozzie_launcher.py | 28 process = subprocess.Popen(['python3'] + args) 29 process = subprocess.Popen(args)
|
/third_party/libabigail/ |
D | gen-changelog.py | 94 p = subprocess.Popen(args=cmd, shell=False, 127 p = subprocess.Popen(args=cmd, shell=False, 139 p = subprocess.Popen(args=cmd, shell=False,
|
/third_party/node/deps/v8/tools/ |
D | run-clang-tidy.py | 62 ninja_ps = subprocess.Popen( 104 ct_process = subprocess.Popen( 144 ct_process = subprocess.Popen( 175 git_ps = subprocess.Popen( 193 ct_ps = subprocess.Popen(
|
/third_party/skia/infra/bots/assets/node/ |
D | create.py | 23 p1 = subprocess.Popen(["curl", NODE_URL], stdout=subprocess.PIPE) 24 p2 = subprocess.Popen(["tar", "-C", target_dir, "-xJf" "-"], stdin=p1.stdout)
|
/third_party/libfuse/test/ |
D | test_examples.py | 79 with subprocess.Popen(cmd, stdout=subprocess.PIPE, 92 mount_process = subprocess.Popen( 149 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 207 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 272 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 297 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 319 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 352 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 393 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, 422 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd, [all …]
|
/third_party/node/tools/gyp/ |
D | gyp_main.py | 15 out = subprocess.Popen( 28 out = subprocess.Popen(
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/ |
D | gyp_main.py | 15 out = subprocess.Popen( 28 out = subprocess.Popen(
|
/third_party/python/Lib/distutils/tests/ |
D | test_cygwinccompiler.py | 41 self.old_popen = cygwinccompiler.Popen 43 cygwinccompiler.Popen = FakePopen 50 cygwinccompiler.Popen = self.old_popen
|
/third_party/skia/infra/bots/assets/cockroachdb/ |
D | create.py | 29 p1 = subprocess.Popen(["curl", URL], stdout=subprocess.PIPE) 30 p2 = subprocess.Popen(["tar", "-xzf" "-"], stdin=p1.stdout)
|
/third_party/skia/tools/ |
D | merge_static_libs.py | 36 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE) 40 proc = subprocess.Popen([ar, '-x', in_lib], stdout=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)
|