Home
last modified time | relevance | path

Searched refs:Popen (Results 1 – 25 of 323) sorted by relevance

12345678910>>...13

/third_party/grpc/test/cpp/naming/
Dresolver_component_tests_runner.py65 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.py92 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.py65 process = subprocess.Popen(
72 process = subprocess.Popen(
80 process = subprocess.Popen(
/third_party/python/Lib/test/
Dtest_subprocess.py103 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/
Dcompress_symbols.py33 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/
Dcompress_symbols.py33 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/
Dsubprocess.rst34 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/
Dcontext.py276 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/
Dexec_util.py6 from subprocess import Popen, PIPE
18 process = Popen(
27 process = Popen(
/third_party/python/Lib/ctypes/
Dutil.py124 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.py48 return subprocess.Popen((_CLIENT_PATH, desired_string, '--server',
58 server_process = subprocess.Popen(
71 server_process = subprocess.Popen(
/third_party/python/Lib/test/subprocessdata/
Dsigchild_ignore.py6 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/
Dgit-clang-format257 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/
Dcreate.py22 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/
Dwebbrowser.py178 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/
Dcreate.py21 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/
Dcreate.py23 p1 = subprocess.Popen(["curl", NODE_URL], stdout=subprocess.PIPE)
24 p2 = subprocess.Popen(["tar", "-C", target_dir, "-xJf" "-"], stdin=p1.stdout)
/third_party/nghttp2/
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,
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/
Dbuild.py29 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/
Dbuild.py33 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/
Dbuild.py33 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/
Dbuild.py34 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/
Dgyp_main.py17 out = subprocess.Popen(
32 out = subprocess.Popen(
/third_party/skia/infra/bots/assets/cockroachdb/
Dcreate.py29 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/
Dgyp_main.py16 out = subprocess.Popen("uname",
31 out = subprocess.Popen(["cygpath", "-u", path],

12345678910>>...13