HomeSort by relevance Sort by last modified time
    Searched refs:subprocess (Results 176 - 200 of 842) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/tools/gyp/test/mac/
gyptest-strip-default.py 14 import subprocess namespace
31 proc = subprocess.Popen(['nm', '-aU', p], stdout=subprocess.PIPE)
  /external/v8/tools/gyp/test/win/generator-output-different-drive/
gyptest-generator-output-different-drive.py 14 import subprocess namespace
34 subprocess.call(['subst', '%c:' % output_drive, os.path.abspath(output_dir)])
44 subprocess.call(['subst', '%c:' % output_drive, '/D'])
  /external/v8/tools/
run-valgrind.py 39 import subprocess namespace
68 process = subprocess.Popen(
70 stderr=subprocess.PIPE,
  /external/v8/tools/testrunner/server/
signatures.py 31 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" %
  /frameworks/support/samples/SupportLeanbackShowcase/
build-local.py 3 import subprocess namespace
56 subprocess.call(["./gradlew", "assembleDebug"])
60 subprocess.call(["adb", "install", "-r", "./app/build/outputs/apk/app-debug.apk"])
  /cts/hostsidetests/theme/
android_device.py 22 import subprocess namespace
34 adbProcess = subprocess.Popen(adbCmd.split(" "), bufsize = -1, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
93 devices = subprocess.check_output(["adb", "devices"])
  /external/clang/tools/clang-format/
git-clang-format 32 import subprocess namespace
238 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
258 """Return a subprocess object producing the diff from `commit`.
265 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
344 p = subprocess.Popen(cmd, stdin=subprocess.PIPE
    [all...]
  /external/pdfium/testing/tools/
common.py 8 import subprocess namespace
24 sys.stdout.write(subprocess.check_output(cmd, stderr=subprocess.STDOUT))
26 subprocess.check_call(cmd)
28 except subprocess.CalledProcessError as e:
run_javascript_tests.py 9 import subprocess namespace
30 subprocess.check_call(
37 subprocess.check_call(cmd_to_run, stdout=outfile)
38 subprocess.check_call(
40 except subprocess.CalledProcessError as e:
  /external/v8/build/
compiler_version.py 14 import subprocess namespace
69 pipe = subprocess.Popen(compiler, shell=True, env=env,
70 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
73 raise subprocess.CalledProcessError(pipe.returncode, compiler)
  /external/v8/build/mac/
find_sdk.py 15 import subprocess namespace
48 job = subprocess.Popen(['xcode-select', '-print-path'],
49 stdout=subprocess.PIPE,
50 stderr=subprocess.STDOUT)
88 print subprocess.check_output(['xcodebuild', '-version', '-sdk',
  /external/v8/tools/ignition/
linux_perf_bytecode_annotate.py 11 import subprocess namespace
153 perf = subprocess.Popen(["perf", "script", "-f", "ip,sym,symoff",
155 stdout=subprocess.PIPE)
159 d8_codegen = subprocess.Popen([d8_path, "--ignition",
161 stdout=subprocess.PIPE)
  /system/extras/verity/fec/tests/
fec.py 19 import subprocess namespace
45 if subprocess.call([ "fec", "--roots= " + str(roots), image, fec ]) != 0:
49 return subprocess.call([ "fec", "--decode", image, fec, output ])
52 return subprocess.call([ "cmp", "-s", a, b ])
56 if subprocess.call([ "simg2img", image, output]) != 0:
  /system/sepolicy/tools/
post_process_mac_perms 30 import subprocess namespace
45 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE)
  /external/llvm/utils/lit/lit/
util.py 7 import subprocess namespace
66 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
162 p = subprocess.Popen(command, cwd=cwd,
163 stdin=subprocess.PIPE,
164 stdout=subprocess.PIPE,
165 stderr=subprocess.PIPE,
170 # Detect Ctrl-C in subprocess.
185 cmd = subprocess.Popen(['xcrun', '--show-sdk-path']
    [all...]
  /external/autotest/client/tests/dma_memtest/
dma_memtest.py 1 import os, time, re, subprocess, shutil, logging namespace
106 parallel_procs.append(subprocess.Popen(tar_cmd,
107 stdout=subprocess.PIPE,
108 stderr=subprocess.PIPE))
112 # Wait for the subprocess before comparison
127 p = subprocess.Popen(diff_cmd,
128 stdout=subprocess.PIPE,
129 stderr=subprocess.PIPE)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_setuptools_nspkg.py 9 import subprocess namespace
19 p = subprocess.Popen([
24 ], cwd=gSrcDir, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
67 p = subprocess.Popen([sys.executable, '-c', script],
68 stdout=subprocess.PIPE,
69 stderr=subprocess.STDOUT,
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
adb_install_cert.py 20 import subprocess namespace
35 class AdbShellError(subprocess.CalledProcessError):
59 return subprocess.check_output(cmd, cwd=dirname)
79 subprocess.list2cmdline(args), RETURN_CODE_PREFIX))
80 process = subprocess.Popen(adb_cmd, stdout=subprocess.PIPE)
83 raise subprocess.CalledProcessError(
89 RETURN_CODE_PREFIX, subprocess.list2cmdline(adb_cmd))
  /external/v8/build/android/
adb_logcat_monitor.py 24 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/v8/build/experimental/
install-build-deps.py 11 import subprocess namespace
248 return pkg in subprocess.check_output(['apt-cache', 'pkgnames']).splitlines()
252 return subprocess.check_output(
262 process = subprocess.Popen(
263 stdout=subprocess.PIPE, stderr=subprocess.PIPE, *popenargs, **kwargs)
293 output = subprocess.check_output(['apt-cache', 'depends', 'g++-multilib'])
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_quopri.py 4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_quopri.py 4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_quopri.py 4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_quopri.py 4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/autotest/site_utils/
test_runner_utils_unittest.py 10 import subprocess namespace
101 # Stub out subprocess.Popen and wait calls.
105 mock_process_1 = self.mox.CreateMock(subprocess.Popen)
106 mock_process_2 = self.mox.CreateMock(subprocess.Popen)
116 self.mox.StubOutWithMock(subprocess, 'Popen')
123 subprocess.Popen(mox.And(StartsWithList(arglist_1),
125 stdout=subprocess.PIPE,
126 stderr=subprocess.STDOUT
136 subprocess.Popen(mox.And(StartsWithList(arglist_2),
138 stdout=subprocess.PIPE
    [all...]

Completed in 829 milliseconds

1 2 3 4 5 6 78 91011>>