/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/flutter/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/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)
|
/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/cef/tools/ |
D | exec_util.py | 6 from subprocess import Popen, PIPE 18 process = Popen( 27 process = Popen(
|
/third_party/flutter/skia/third_party/externals/dawn/scripts/ |
D | git-clang-format | 257 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 288 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 362 git_metadata = subprocess.Popen(git_metadata_cmd, stdin=subprocess.PIPE, 389 p = subprocess.Popen(cmd, stdin=subprocess.PIPE) 416 git_show = subprocess.Popen(git_show_cmd, stdin=subprocess.PIPE, 425 clang_format = subprocess.Popen(clang_format_cmd, stdin=clang_format_stdin, 436 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout, 530 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=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/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/typescript/tests/ts_extra_tests/tool/ |
D | testcfg.py | 163 …process = subprocess.Popen(self.__get_es2abc_cmd(filename), stdin=subprocess.PIPE, stdout=subproce… 196 … process = subprocess.Popen(self.__get_tsc_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 219 … process = subprocess.Popen(self.__get_node_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE, 241 …process = subprocess.Popen(self.__get_es2abc_cmd(self.path), stdin=subprocess.PIPE, stdout=subproc… 260 … process = subprocess.Popen(self._get_ark_js_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
/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/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/flutter/skia/infra/bots/assets/go/ |
D | create.py | 22 p1 = subprocess.Popen(["curl", GO_URL], stdout=subprocess.PIPE) 23 p2 = subprocess.Popen(["tar", "-C", target_dir, "-xzf" "-"], stdin=p1.stdout)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | win_tool.py | 122 link = subprocess.Popen([args[0].replace('/', '\\')] + list(args[1:]), 218 popen = subprocess.Popen(args, shell=True, env=env, 252 popen = subprocess.Popen(args, shell=True, env=env, 273 popen = subprocess.Popen(args, shell=True, env=env, 290 popen = subprocess.Popen(args, shell=True, env=env,
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | win_tool.py | 137 link = subprocess.Popen( 256 popen = subprocess.Popen( 302 popen = subprocess.Popen( 323 popen = subprocess.Popen( 343 popen = subprocess.Popen(
|
/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/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/flutter/skia/infra/bots/assets/node/ |
D | create.py | 21 p1 = subprocess.Popen(["curl", NODE_URL], stdout=subprocess.PIPE) 22 p2 = subprocess.Popen(["tar", "-C", target_dir, "-xJf" "-"], stdin=p1.stdout)
|
/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/musl/ndk-test/sanitize/fuzz/ |
D | build.py | 33 subprocess.Popen(build_cmd,cwd='build',shell=True).wait() 34 subprocess.Popen('make',cwd='build',shell=True).wait()
|
/third_party/musl/ndk-test/sanitize/cfi/ |
D | build.py | 29 subprocess.Popen(build_cmd,cwd='build',shell=True).wait() 30 subprocess.Popen('make',cwd='build',shell=True).wait()
|
/third_party/musl/ndk-test/sanitize/scudo/ |
D | build.py | 33 res1 = subprocess.Popen(build_cmd,cwd='build',shell=True).wait() 35 res2 = subprocess.Popen('make',cwd='build',shell=True).wait()
|
/third_party/musl/ndk-test/sanitize/trace-pc-guard/ |
D | build.py | 33 res1 = subprocess.Popen(build_cmd,cwd='build',shell=True).wait() 35 res2 = subprocess.Popen('make',cwd='build',shell=True).wait()
|
/third_party/musl/ndk-test/sanitize/asan/ |
D | build.py | 34 res1 = subprocess.Popen(build_cmd,cwd='build',shell=True).wait() 36 res2 = subprocess.Popen('make',cwd='build',shell=True).wait()
|