/external/chromium_org/tools/export_tarball/ |
export_v8_tarball.py | 20 import subprocess namespace 96 subprocess.check_call(["make", "dependencies"], cwd=v8_directory)
|
/external/chromium_org/tools/git/ |
move_source_file.py | 25 import subprocess namespace
|
/external/chromium_org/tools/gyp/ |
gyptest.py | 13 import subprocess namespace 87 subout = subprocess.PIPE 93 suberr = subprocess.STDOUT 96 suberr = subprocess.PIPE 97 p = subprocess.Popen(command,
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
eclipse.py | 22 import subprocess namespace 179 cpp_proc = subprocess.Popen(args=command, cwd='.', 180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
win_tool.py | 14 import subprocess namespace 74 popen = subprocess.Popen(args, shell=True, env=env, 75 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 87 popen = subprocess.Popen(args, shell=True, env=env, 88 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 119 popen = subprocess.Popen(args, shell=True, env=env, 120 stdout=subprocess.PIPE, stderr=subprocess.STDOUT [all...] |
/external/chromium_org/tools/linux/ |
dump-static-initializers.py | 28 import subprocess namespace 38 IS_GIT_WORKSPACE = (subprocess.Popen( 39 ['git', 'rev-parse'], stderr=subprocess.PIPE).wait() == 0) 44 self.cppfilt = subprocess.Popen(['c++filt'], 45 stdin=subprocess.PIPE, 46 stdout=subprocess.PIPE) 65 gitlsfiles = subprocess.Popen( 67 stdout=subprocess.PIPE) 92 gitgrep = subprocess.Popen( 94 stdout=subprocess.PIPE [all...] |
/external/chromium_org/tools/perf_expectations/tests/ |
perf_expectations_unittest.py | 13 import subprocess namespace 151 p = subprocess.Popen([MAKE_EXPECTATIONS, '-s'], stdout=subprocess.PIPE)
|
/external/chromium_org/tools/python/google/ |
httpd_utils.py | 11 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)
|
platform_utils_win.py | 8 import subprocess namespace 50 _cygpath_proc = subprocess.Popen(cygpath_command, 51 stdin=subprocess.PIPE, 52 stdout=subprocess.PIPE) 133 proc = subprocess.Popen(self._PathToExecutable("whoami.exe"), 134 stdout=subprocess.PIPE)
|
/external/chromium_org/tools/ |
sync-webkit-git.py | 19 import subprocess namespace 30 proc = subprocess.Popen(command, shell=shell, stdout=subprocess.PIPE) 100 log = subprocess.Popen(cmd, shell=(os.name == 'nt'), stdout=subprocess.PIPE) 145 subprocess.check_call(['git', 'fetch', GetRemote()], 156 subprocess.check_call(['git', 'update-ref', '-m', 'gclient sync', 172 if subprocess.call(['git', 'diff-index', '--exit-code', '--shortstat', 175 subprocess.check_call(['git', 'reset', '--hard'], shell=(os.name == 'nt'))
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
mac_platform_backend.py | 6 import subprocess namespace 70 p = subprocess.Popen(['purge'])
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
perf_profiler.py | 9 import subprocess namespace 23 self._proc = subprocess.Popen( 26 stdout=self._tmp_output_file, stderr=subprocess.STDOUT) 87 return not subprocess.Popen(['perf', '--version'], 88 stderr=subprocess.STDOUT, 89 stdout=subprocess.PIPE).wait() 110 report = subprocess.Popen( 113 stdout=subprocess.PIPE, stderr=open(os.devnull, 'w')).communicate()[0]
|
tcpdump_profiler.py | 7 import subprocess namespace 26 self._proc = subprocess.Popen( 56 self._proc = subprocess.Popen( 58 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
|
/external/chromium_org/tools/valgrind/ |
common.py | 9 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.call(["taskkill", "/T", "/F", "/PID", str(p.pid)] [all...] |
/external/chromium_org/v8/test/mozilla/ |
testcfg.py | 31 import subprocess namespace 149 code = subprocess.call(command, shell=True)
|
/external/chromium_org/v8/tools/ |
test-server.py | 32 import subprocess namespace 59 code = subprocess.call(cmd, shell=True) 81 code = subprocess.call("which pip > /dev/null", shell=True) 83 apt_get_code = subprocess.call("which apt-get > /dev/null", shell=True) 99 fingerprint = subprocess.check_output("ssh-keygen -lf %s" % privkeyfile,
|
/external/chromium_org/v8/tools/testrunner/local/ |
commands.py | 31 import subprocess namespace 71 popen_args = subprocess.list2cmdline(args) 78 process = subprocess.Popen(
|
/external/chromium_org/v8/tools/testrunner/server/ |
work_handler.py | 32 import subprocess namespace 110 base_revision = subprocess.check_output(get_hash_cmd, shell=True) 115 base_revision = subprocess.check_output(get_hash_cmd, shell=True) 142 return subprocess.call(cmd, shell=True)
|
/external/clang/tools/clang-format/ |
clang-format.py | 22 import subprocess namespace 44 startupinfo = subprocess.STARTUPINFO() 45 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW 46 startupinfo.wShowWindow = subprocess.SW_HIDE 49 p = subprocess.Popen([binary, '-lines', lines, '-style', style, 51 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 52 stdin=subprocess.PIPE, startupinfo=startupinfo)
|
/external/clang/utils/ |
FuzzTest | 10 import subprocess namespace 139 p = subprocess.Popen(test_args, stdout=stdout, stderr=stderr)
|
/external/icu4c/stubdata/ |
icu_dat_generator.py | 31 import subprocess namespace 51 ret = subprocess.call(command_list, cwd=working_dir)
|
/external/icu4c/test/depstest/ |
depstest.py | 25 import subprocess namespace 51 nm_result = subprocess.Popen(["nm", "--demangle", "--format=sysv", 53 stdout=subprocess.PIPE).communicate()[0]
|
/external/libvpx/libvpx/tools/ |
lint-hunks.py | 14 import subprocess namespace 40 class Subprocess(subprocess.Popen): 46 super(Subprocess, self).__init__(args, **kwargs) 49 result = super(Subprocess, self).communicate(*args, **kwargs) 80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE) 96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE) 113 show = Subprocess(show_cmd, stdout=subprocess.PIPE [all...] |
/external/mesa3d/ |
common.py | 7 import subprocess namespace 68 subprocess.call(['llvm-config', '--version'], stdout=subprocess.PIPE) == 0:
|
/external/mesa3d/scons/ |
gallium.py | 37 import subprocess namespace 125 stdout = subprocess.PIPE)
|