/third_party/grpc/test/cpp/naming/ |
D | resolver_component_tests_runner.py | 65 tcp_connect_subprocess = subprocess.Popen(python_args([ 74 dns_resolver_subprocess = subprocess.Popen(python_args([ 100 dns_server_subprocess = subprocess.Popen(python_args([ 122 current_test_subprocess = subprocess.Popen([ 139 current_test_subprocess = subprocess.Popen([ 156 current_test_subprocess = subprocess.Popen([ 173 current_test_subprocess = subprocess.Popen([ 190 current_test_subprocess = subprocess.Popen([ 207 current_test_subprocess = subprocess.Popen([ 224 current_test_subprocess = subprocess.Popen([ [all …]
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _exit_test.py | 92 process = subprocess.Popen(BASE_COMMAND + 99 process = subprocess.Popen(BASE_SIGTERM_COMMAND + 105 process = subprocess.Popen(BASE_COMMAND + 112 process = subprocess.Popen(BASE_SIGTERM_COMMAND + 119 process = subprocess.Popen( 126 process = subprocess.Popen( 134 process = subprocess.Popen(BASE_COMMAND + 141 process = subprocess.Popen(BASE_SIGTERM_COMMAND + 150 process = subprocess.Popen(BASE_COMMAND + 159 process = subprocess.Popen( [all …]
|
D | _server_shutdown_test.py | 65 process = subprocess.Popen( 72 process = subprocess.Popen( 80 process = subprocess.Popen(
|
/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/cef/tools/ |
D | exec_util.py | 6 from subprocess import Popen, PIPE 18 process = Popen( 27 process = Popen(
|
/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/grpc/examples/python/cancellation/test/ |
D | _cancellation_example_test.py | 48 return subprocess.Popen((_CLIENT_PATH, desired_string, '--server', 58 server_process = subprocess.Popen( 71 server_process = 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/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/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/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/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/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/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/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/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/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()
|
/third_party/node/tools/gyp/ |
D | gyp_main.py | 17 out = subprocess.Popen( 32 out = subprocess.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/node/deps/npm/node_modules/node-gyp/gyp/ |
D | gyp_main.py | 16 out = subprocess.Popen("uname", 31 out = subprocess.Popen(["cygpath", "-u", path],
|