Home
last modified time | relevance | path

Searched refs:Popen (Results 1 - 25 of 255) sorted by relevance

1234567891011

/third_party/python/Lib/test/
H A Dtest_subprocess.py107 class PopenExecuteChildRaises(subprocess.Popen):
108 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
118 p = subprocess.Popen(ZERO_RETURN_CMD,
132 p = subprocess.Popen(ZERO_RETURN_CMD,
297 # Popen() called with invalid arguments should raise TypeError
298 # but Popen.__del__ should not complain (issue #12085)
300 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
301 argcount = subprocess.Popen.__init__.__code__.co_argcount
303 self.assertRaises(TypeError, subprocess.Popen, *too_many_args)
308 p = subprocess.Popen([sy
[all...]
/third_party/skia/third_party/externals/angle2/android/
H A 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/Lib/multiprocessing/
H A Dcontext.py280 from .popen_fork import Popen namespace
281 return Popen(process_obj)
287 from .popen_spawn_posix import Popen namespace
288 return Popen(process_obj)
299 from .popen_forkserver import Popen namespace
300 return Popen(process_obj)
335 from .popen_spawn_win32 import Popen namespace
336 return Popen(process_obj)
H A Dpopen_forkserver.py13 __all__ = ['Popen']
29 class Popen(popen_fork.Popen): class
H A Dpopen_spawn_posix.py9 __all__ = ['Popen']
26 class Popen(popen_fork.Popen): class
/third_party/python/Lib/ctypes/
H A 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/python/Lib/
H A Dwebbrowser.py179 p = subprocess.Popen(cmdline)
181 p = subprocess.Popen(cmdline, close_fds=True)
197 p = subprocess.Popen(cmdline)
199 p = subprocess.Popen(cmdline, close_fds=True,
238 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,
370 p = subprocess.Popen(["kfmclient", action, url],
382 p = subprocess.Popen(["konqueror", "--silent", url],
395 p = subprocess.Popen(["kfm", "-d", url],
/third_party/python/Lib/test/subprocessdata/
H A Dsigchild_ignore.py6 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/
H A Dfoozzie_launcher.py28 process = subprocess.Popen(['python3'] + args)
29 process = subprocess.Popen(args)
/third_party/node/tools/gyp/
H A Dgyp_main.py15 out = subprocess.Popen(
28 out = subprocess.Popen(
/third_party/node/deps/npm/node_modules/node-gyp/gyp/
H A Dgyp_main.py15 out = subprocess.Popen(
28 out = subprocess.Popen(
/third_party/skia/infra/bots/assets/node/
H A 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/libabigail/
H A Dgen-changelog.py94 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/
H A Drun-clang-tidy.py62 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/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py130 # additional arguments to the shell itself. That is to say, Popen does the
132 # Popen(['/bin/sh', '-c', args[0], args[1], ...])"
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/
H A Dwin_tool.py130 # additional arguments to the shell itself. That is to say, Popen does the
132 # Popen(['/bin/sh', '-c', args[0], args[1], ...])"
135 link = subprocess.Popen(
252 popen = subprocess.Popen(
296 popen = subprocess.Popen(
315 popen = subprocess.Popen(
333 popen = subprocess.Popen(
/third_party/skia/infra/bots/assets/cockroachdb/
H A Dcreate.py29 p1 = subprocess.Popen(["curl", URL], stdout=subprocess.PIPE)
30 p2 = subprocess.Popen(["tar", "-xzf" "-"], stdin=p1.stdout)
/third_party/python/Lib/distutils/tests/
H A Dtest_cygwinccompiler.py22 # issue #6438 in Python 3.x, Popen returns bytes
41 self.old_popen = cygwinccompiler.Popen
43 cygwinccompiler.Popen = FakePopen
50 cygwinccompiler.Popen = self.old_popen
/third_party/nghttp2/
H A 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/typescript/tests/ts_extra_tests/tool/
H A Dtestcfg.py79 process = subprocess.Popen(self.__get_es2abc_cmd(filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
122 process = subprocess.Popen(arkguard_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
234 process = subprocess.Popen(self.__get_tsc_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
257 process = subprocess.Popen(self.__get_node_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
284 process = subprocess.Popen(self.__get_es2abc_cmd(self.path), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
303 process = subprocess.Popen(self._get_ark_js_cmd(), stdin=subprocess.PIPE, stdout=subprocess.PIPE,
/third_party/python/Tools/scripts/
H A Dget-remote-certificate.py18 from subprocess import Popen, PIPE, STDOUT, DEVNULL namespace
19 proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, stdin=DEVNULL)
/third_party/skia/tools/
H A Dmerge_static_libs.py36 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE)
40 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
/third_party/libfuse/test/
H A Dtest_examples.py79 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(cmdlin
[all...]
/third_party/node/deps/v8/tools/torque/
H A Dformat-torque.py13 from subprocess import Popen, PIPE namespace
106 p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE, shell=True)
108 p = Popen(['clang-format', '-assume-filename=.ts'], stdin=PIPE, stdout=PIPE, stderr=PIPE)
/third_party/vixl/tools/
H A Dclang_format.py114 p_format = subprocess.Popen(cmd_format,
122 p_diff = subprocess.Popen(cmd_diff,
126 p_colordiff = subprocess.Popen(

Completed in 11 milliseconds

1234567891011