HomeSort by relevance Sort by last modified time
    Searched refs:subprocess (Results 51 - 75 of 497) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/webkit/tools/layout_tests/
PRESUBMIT.py 29 subproc = input_api.subprocess.Popen(
33 stdin=input_api.subprocess.PIPE,
34 stdout=input_api.subprocess.PIPE,
35 stderr=input_api.subprocess.STDOUT)
  /external/skia/tools/
find_mac_sdk.py 8 import subprocess namespace
23 job = subprocess.Popen(['xcode-select', '-print-path'],
24 stdout=subprocess.PIPE,
25 stderr=subprocess.STDOUT)
  /external/v8/tools/
disasm.py 32 import subprocess namespace
74 process = subprocess.Popen(command,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
  /frameworks/webview/chromium/tools/
run_webview_cts.py 23 import subprocess namespace
69 proc = subprocess.Popen(
71 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /frameworks/compile/libbcc/tools/build/
gen-build-info.py 22 import subprocess namespace
36 proc = subprocess.Popen(['git', 'log', '-1', '--format=%H'],
37 stdout=subprocess.PIPE,
38 stderr=subprocess.PIPE,
46 proc = subprocess.Popen(['git', 'status'],
47 stdout=subprocess.PIPE,
48 stderr=subprocess.PIPE,
  /external/chromium_org/third_party/android_testrunner/
run_command.py 21 import subprocess namespace
40 """Spawn and retry a subprocess to run the given shell command.
67 """Spawns a subprocess to run the given shell command.
93 stdin_dest = subprocess.PIPE
96 pipe = subprocess.Popen(
101 stderr=subprocess.STDOUT,
163 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
164 stderr=subprocess.STDOUT)
171 subproc = subprocess.Popen(["/usr/bin/valgrind", "--tool=memcheck"
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update.py 17 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/skia/tools/tests/
skimage_self_test.py 10 import subprocess namespace
57 subprocess.check_call([skimage_binary, "--readPath", images_dir,
68 subprocess.check_call([skimage_binary, "--readPath", images_dir,
78 subprocess.check_call([skimage_binary, "--readPath", empty_dir,
88 subprocess.check_call([skimage_binary, "--readPath", "/nonexistent/dir",
  /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)
  /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/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pdb.py 8 import subprocess namespace
26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
27 stdin=subprocess.PIPE,
28 stderr=subprocess.STDOUT,
357 proc = subprocess.Popen(cmd,
358 stdout=subprocess.PIPE,
359 stdin=subprocess.PIPE,
360 stderr=subprocess.STDOUT,
script_helper.py 9 import subprocess namespace
23 # Executing the interpreter in a subprocess
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
34 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
39 subprocess._cleanup()
68 return subprocess.call(cmd_line, stdout=devnull,
69 stderr=subprocess.STDOUT)
74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pdb.py 8 import subprocess namespace
26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
27 stdin=subprocess.PIPE,
28 stderr=subprocess.STDOUT,
357 proc = subprocess.Popen(cmd,
358 stdout=subprocess.PIPE,
359 stdin=subprocess.PIPE,
360 stderr=subprocess.STDOUT,
script_helper.py 9 import subprocess namespace
23 # Executing the interpreter in a subprocess
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
34 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
39 subprocess._cleanup()
68 return subprocess.call(cmd_line, stdout=devnull,
69 stderr=subprocess.STDOUT)
74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE
    [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/chrome/common/extensions/docs/server2/
start_dev_server.py 9 import subprocess namespace
34 subprocess.call(args)
  /external/chromium_org/chrome/test/nacl_test_injection/
buildbot_nacl_integration.py 7 import subprocess namespace
63 return subprocess.call(cmd)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-blink-deps 30 import subprocess namespace
50 subprocess.call([sys.executable, check_deps, '--root', root_dir, start_dir])
  /external/chromium_org/third_party/ots/
gyp_ots 8 import subprocess namespace
17 retcode = subprocess.call(['svn', 'checkout', _GYP_FETCH_URL, gyp_dir])
  /external/chromium_org/tools/gyp/pylib/gyp/
sun_tool.py 12 import subprocess namespace
47 return subprocess.call(cmd_list)
  /external/chromium_org/tools/gyp/test/standalone-static-library/
gyptest-standalone-static-library.py 12 import subprocess namespace
48 retcode = subprocess.call(['ar', '-x', path])
  /external/chromium_org/tools/metrics/histograms/
PRESUBMIT.py 18 exit_code = input_api.subprocess.call(
25 exit_code = input_api.subprocess.call(
  /external/chromium_org/tools/swig/
swig.py 15 import subprocess namespace
41 return subprocess.call(args)
  /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]

Completed in 670 milliseconds

1 23 4 5 6 7 8 91011>>