Searched refs:subprocess (Results 76 - 100 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/tools/compile_test/
H A Dcompile_test.py16 import subprocess namespace
50 cxx_popen = subprocess.Popen(cxx_cmdline,
51 stdout=subprocess.PIPE,
52 stderr=subprocess.PIPE)
/external/chromium_org/tools/flakiness/
H A Dis_flaky.py11 import subprocess namespace
30 return subprocess.check_call(job['cmd'], stdout=subprocess.PIPE,
31 stderr=subprocess.STDOUT)
H A Dis_flaky_test.py8 import subprocess namespace
17 self.original_subprocess_check_call = subprocess.check_call
18 subprocess.check_call = self.mock_check_call
24 subprocess.check_call = self.original_subprocess_check_call
/external/chromium_org/tools/git/
H A Dgit-diff-ide.py21 import subprocess namespace
29 job = subprocess.Popen(args,
31 stdout=subprocess.PIPE,
32 stderr=subprocess.STDOUT)
/external/chromium_org/tools/gn/
H A Dlast_commit_position.py23 import subprocess namespace
43 proc = subprocess.Popen(command,
44 stdout=subprocess.PIPE,
45 stderr=subprocess.PIPE,
/external/chromium_org/tools/gyp/test/lib/
H A DTestWin.py13 import subprocess namespace
37 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-xcode-support-actions.py14 import subprocess namespace
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-long-command-line.py13 import subprocess namespace
/external/chromium_org/tools/
H A Dgypv8sh.py13 import subprocess namespace
47 p = subprocess.Popen(
48 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0)
/external/chromium_org/tools/relocation_packer/test_data/
H A Dgenerate_elf_file_unittest_relocs.py16 import subprocess namespace
32 subprocess.check_call(objcopy_command)
36 subprocess.check_call(pack_command)
47 subprocess.check_call(unpack_command)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dandroid_systrace_profiler.py7 import subprocess namespace
39 self._profiler = subprocess.Popen(
45 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/external/chromium_org/tools/win/split_link/
H A Dgraph_dependencies.py7 import subprocess namespace
21 popen = subprocess.Popen(
28 popen = subprocess.Popen(
31 stdout=subprocess.PIPE,
/external/chromium_org/v8/tools/
H A Ddisasm.py32 import subprocess namespace
75 process = subprocess.Popen(command,
77 stdout=subprocess.PIPE,
78 stderr=subprocess.STDOUT)
/external/skia/experimental/benchtools/
H A Drebase.py24 import subprocess namespace
63 proc = subprocess.Popen(['gsutil', 'ls',
65 stdout=subprocess.PIPE)
73 proc = subprocess.Popen(['gsutil', 'cp',
76 stdout=subprocess.PIPE)
93 proc = subprocess.Popen(['python', 'skia/bench/gen_bench_expectations.py',
96 stdout=subprocess.PIPE)
114 if subprocess.call(['git', 'pull'],
115 stderr=subprocess.PIPE):
120 if subprocess
[all...]
/external/chromium_org/build/android/
H A Dadb_logcat_monitor.py24 import subprocess namespace
60 process = subprocess.Popen([adb_cmd, '-s', device_id,
63 stderr=subprocess.PIPE)
81 out, err = subprocess.Popen([adb_cmd, 'devices'],
82 stdout=subprocess.PIPE,
83 stderr=subprocess.PIPE).communicate()
129 subprocess.call([adb_cmd, '-s', device_id, 'logcat', '-c'])
/external/skia/tools/
H A Dgen_bench_expectations_from_codereview.py16 import subprocess namespace
88 subprocess.check_call(['gsutil', 'cp', '-R', url, dest_dir],
89 stdout=subprocess.PIPE,
90 stderr=subprocess.PIPE)
147 except subprocess.CalledProcessError:
163 subprocess.check_call(['python',
168 except subprocess.CalledProcessError:
H A Dmisc_utils.py12 import subprocess namespace
30 """Call subprocess methods, but print out command before executing.
34 not, this is the same as calling the subprocess method
45 """Wrapper for subprocess.check_call().
48 *args: to be passed to subprocess.check_call()
49 **kwargs: to be passed to subprocess.check_call()
51 Whatever subprocess.check_call() returns.
53 OSError or subprocess.CalledProcessError: raised by check_call.
59 return subprocess.check_call(*args, stdout=devnull, **kwargs)
61 return subprocess
[all...]
/external/chromium_org/build/mac/
H A Dfind_sdk.py15 import subprocess namespace
41 job = subprocess.Popen(['xcode-select', '-print-path'],
42 stdout=subprocess.PIPE,
43 stderr=subprocess.STDOUT)
81 print subprocess.check_output(['xcodebuild', '-version', '-sdk',
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Dsdk_update.py17 import subprocess namespace
39 A new list that can be passed to subprocess.call, subprocess.Popen, etc.
56 process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
120 return subprocess.call([NACLSDK_SHELL_SCRIPT] + args)
122 return subprocess.call(MakeSdkUpdateMainCmd(args))
/external/chromium_org/tools/telemetry/telemetry/core/forwarders/
H A Dcros_forwarder.py6 import subprocess namespace
46 self._proc = subprocess.Popen(
48 stdout=subprocess.PIPE,
49 stderr=subprocess.PIPE,
50 stdin=subprocess.PIPE,
/external/chromium_org/third_party/skia/tools/
H A Dgit-sync-deps34 import subprocess namespace
43 A string suitable for passing to subprocess functions, or None.
52 subprocess.call([git, '--version'], stdout=devnull)
78 disable = subprocess.check_output(
81 except subprocess.CalledProcessError:
95 toplevel = subprocess.check_output(
98 except subprocess.CalledProcessError:
122 subprocess.check_call(
136 subprocess.check_call([git, 'fetch', '--quiet'], cwd=directory)
138 subprocess
[all...]
/external/chromium_org/tools/python/google/
H A Dhttpd_utils.py11 import subprocess namespace
144 subprocess.Popen(cygserver_exe, env=env)
146 self._http_server_proc = subprocess.Popen(self._start_command)
161 kill_proc = subprocess.Popen(self._stop_command,
162 stdout=subprocess.PIPE,
163 stderr=subprocess.PIPE)
168 subprocess.Popen(["taskkill.exe", "/f", "/im", "cygserver.exe"],
169 stdout=subprocess.PIPE,
170 stderr=subprocess.PIPE)
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dlinux_platform_backend.py7 import subprocess namespace
74 p = subprocess.Popen(['/sbin/sysctl', '-w', 'vm.drop_caches=3'])
108 (out, err) = subprocess.Popen(cmd,
109 stdout=subprocess.PIPE,
110 stderr=subprocess.PIPE).communicate()
120 return 'ipfw_mod' in subprocess.Popen(
121 ['lsmod'], stdout=subprocess.PIPE).communicate()[0]
141 subprocess.check_call(['sudo', 'insmod', ipfw_mod])
143 subprocess.check_call(['sudo', 'cp', ipfw_bin, '/usr/local/sbin'])
/external/chromium_org/tools/valgrind/
H A Dcommon.py9 import subprocess namespace
23 """Runs a subprocess in the background. Returns a handle to the process."""
25 return subprocess.Popen(proc)
29 """ Runs a subprocess, until it finishes or |timeout| is exceeded and the
42 # By default, the subprocess is supposed to inherit these from its parent,
48 p = subprocess.Popen(proc, universal_newlines=True,
50 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
52 logging.info("started subprocess")
75 subprocess
[all...]
/external/chromium_org/third_party/skia/experimental/benchtools/
H A Drebase.py24 import subprocess namespace
60 proc = subprocess.Popen(['gsutil', 'ls',
62 stdout=subprocess.PIPE)
70 proc = subprocess.Popen(['gsutil', 'cp',
73 stdout=subprocess.PIPE)
104 proc = subprocess.Popen(['python', 'skia/bench/gen_bench_expectations.py',
106 stdout=subprocess.PIPE)
114 proc = subprocess.Popen(['python', 'skia/bench/gen_bench_expectations.py',
117 stdout=subprocess.PIPE)
155 if subprocess
[all...]

Completed in 1684 milliseconds

1234567891011>>