Searched refs:subprocess (Results 126 - 150 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/tools/git/
H A Dfor-all-touched-files.py26 import subprocess namespace
38 job = subprocess.Popen(args,
40 stdout=subprocess.PIPE,
41 stderr=subprocess.STDOUT)
H A Dmffr.py22 import subprocess namespace
26 # We need to use shell=True with subprocess on Windows so that it
56 out, err = subprocess.Popen(
59 stdout=subprocess.PIPE,
128 out, err = subprocess.Popen(['git', 'status', '--porcelain'],
129 stdout=subprocess.PIPE,
/external/compiler-rt/lib/dfsan/scripts/
H A Dbuild-libc-list.py16 import subprocess namespace
22 readelf_proc = subprocess.Popen(['readelf', '-s', '-W', object],
23 stdout=subprocess.PIPE)
26 raise subprocess.CalledProcessError(readelf_proc.returncode, 'readelf')
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dbrowserprocess.py8 import subprocess namespace
32 # subprocess.wait() doesn't have a timeout, unfortunately.
72 handle = subprocess.Popen(cmd, env=env)
80 handle = subprocess.Popen(cmd, env=env, preexec_fn=SetPGrp)
/external/chromium_org/tools/android/checkstyle/
H A Dcheckstyle.py8 import subprocess namespace
34 check = subprocess.Popen(['java', '-cp',
38 stdout=subprocess.PIPE, env=checkstyle_env)
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-installname.py15 import subprocess namespace
28 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
H A Dgyptest-strip-default.py14 import subprocess namespace
31 proc = subprocess.Popen(['nm', '-aU', p], stdout=subprocess.PIPE)
/external/chromium_org/tools/gyp/test/win/generator-output-different-drive/
H A Dgyptest-generator-output-different-drive.py14 import subprocess namespace
34 subprocess.call(['subst', '%c:' % output_drive, os.path.abspath(output_dir)])
44 subprocess.call(['subst', '%c:' % output_drive, '/D'])
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dfind_dependencies_unittest.py9 import subprocess namespace
42 subprocess.call(['unzip', zip_path], cwd=temp_dir, stdout=dev_null)
54 self.assertEqual(subprocess.call(gsutil_command, stdout=dev_null), 0)
59 #gsutil_process = subprocess.Popen(gsutil_command, stdout=dev_null)
/external/chromium_org/v8/tools/testrunner/server/
H A Dsignatures.py31 import subprocess namespace
41 code = subprocess.call("openssl dgst -out %s -sign %s %s" %
56 code = subprocess.call("openssl dgst -verify %s -signature %s %s" %
/external/llvm/utils/git/
H A Dfind-rev3 import os, sys, subprocess namespace
24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
25 stdout=subprocess.PIPE)
/external/skia/gm/rebaseline_server/
H A Dcompare_rendered_pictures_test.py22 import subprocess namespace
79 return subprocess.check_output([
101 return subprocess.check_output([
/external/chromium-trace/
H A Dupdate.py3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys namespace
26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
/external/chromium_org/build/
H A Dcompiler_version.py14 import subprocess namespace
84 pipe = subprocess.Popen(compiler, shell=True, env=env,
85 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
88 raise subprocess.CalledProcessError(pipe.returncode, compiler)
/external/clang/tools/clang-format/
H A Dgit-clang-format32 import subprocess namespace
237 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
257 """Return a subprocess object producing the diff from `commit`.
264 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
343 p = subprocess.Popen(cmd, stdin=subprocess
[all...]
/external/sepolicy/tools/
H A Dpost_process_mac_perms30 import subprocess namespace
45 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE)
/external/llvm/utils/lit/lit/
H A Dutil.py7 import subprocess namespace
51 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
147 p = subprocess.Popen(command, cwd=cwd,
148 stdin=subprocess.PIPE,
149 stdout=subprocess.PIPE,
150 stderr=subprocess.PIPE,
155 # Detect Ctrl-C in subprocess.
176 cmd = subprocess
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dsvn.py11 import subprocess namespace
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
35 stdout=subprocess.PIPE,
36 stderr=subprocess.STDOUT)
68 proc = subprocess.Popen(args, cwd=self._directory,
69 stdout=subprocess.PIPE,
70 stderr=subprocess.PIPE)
/external/chromium_org/tools/gyp/buildbot/
H A Dbuildbot_run.py13 import subprocess namespace
33 """Wrapper around subprocess.call which treats errors as build exceptions."""
35 retcode = subprocess.call(stdin=devnull_fd, *args, **kwargs)
140 if subprocess.call(['which', 'taskset'], stdout=devnull_fd) == 0:
146 subprocess.Popen(
160 subprocess.call(['pkill', 'emulator.*'])
191 retcode = subprocess.call(
196 retcode = subprocess.call(command, cwd=ROOT_DIR, env=env, shell=True)
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py14 import subprocess namespace
39 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
80 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/external/skia/tools/
H A Dsvn.py11 import subprocess namespace
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
35 stdout=subprocess.PIPE,
36 stderr=subprocess.STDOUT)
68 proc = subprocess.Popen(args, cwd=self._directory,
69 stdout=subprocess.PIPE,
70 stderr=subprocess.PIPE)
/external/vixl/tools/
H A Dtest.py33 import subprocess namespace
92 process = subprocess.Popen(command,
93 stdout=subprocess.PIPE,
94 stderr=subprocess.PIPE)
188 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE,
189 stderr=subprocess.PIPE)
/external/chromium_org/third_party/skia/experimental/benchtools/
H A Dgreenify.py25 import subprocess namespace
46 if subprocess.call(['git', 'pull'],
47 stderr=subprocess.PIPE):
52 if subprocess.call(['git', 'clone', '-q', '--depth=50', '--single-branch',
55 subprocess.call(['git', 'checkout', 'master'])
56 subprocess.call(['git', 'pull'])
88 if subprocess.call(cmd):
90 subprocess.call(['git', 'checkout', 'master'])
155 if not subprocess.call(['git', 'rev-parse'], stderr=subprocess
[all...]
/external/skia/experimental/benchtools/
H A Dgreenify.py25 import subprocess namespace
46 if subprocess.call(['git', 'pull'],
47 stderr=subprocess.PIPE):
52 if subprocess.call(['git', 'clone', '-q', '--depth=50', '--single-branch',
55 subprocess.call(['git', 'checkout', 'master'])
56 subprocess.call(['git', 'pull'])
88 if subprocess.call(cmd):
90 subprocess.call(['git', 'checkout', 'master'])
155 if not subprocess.call(['git', 'rev-parse'], stderr=subprocess
[all...]
/external/chromium_org/build/android/pylib/
H A Dcmd_helper.py5 """A wrapper for subprocess to make calling shell commands easier."""
13 import subprocess namespace
24 return subprocess.Popen(
38 """Opens a subprocess to execute a program and returns its return value.
43 cwd: If not None, the subprocess's current directory will be changed to
54 """Open a subprocess to execute a program and returns its output.
59 cwd: If not None, the subprocess's current directory will be changed to
72 """Executes a subprocess and returns its exit code and output.
77 cwd: If not None, the subprocess's current directory will be changed to
98 pipe = Popen(args, stdout=subprocess
[all...]

Completed in 667 milliseconds

1234567891011>>