HomeSort by relevance Sort by last modified time
    Searched full:subprocess (Results 151 - 175 of 1155) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/pdfium/testing/tools/
run_javascript_tests.py 9 import subprocess
30 subprocess.check_call(
37 subprocess.check_call(cmd_to_run, stdout=outfile)
38 subprocess.check_call(
40 except subprocess.CalledProcessError as e:
  /system/extras/verity/fec/tests/
fec.py 19 import subprocess
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
45 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_setuptools_nspkg.py 9 import subprocess
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/compiler-rt/lib/asan/scripts/
symbolize.py 15 import subprocess
41 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
85 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
86 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
SubprocessLogger.py 30 import subprocess
53 # Pipe to interact with subprocess
123 subprocess launched by Popen
131 Avoid subprocess to receive signal destinated
150 self.__subProc = subprocess.Popen(
166 # or if the subprocess is dead
181 """ This class is used to log script subprocess """
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
generate.py 7 import subprocess
64 p = subprocess.Popen(args,
65 stdin=subprocess.PIPE,
66 stdout=subprocess.PIPE,
67 stderr=subprocess.PIPE)
186 p = subprocess.Popen(rcssmin_args,
187 stdin=subprocess.PIPE,
188 stdout=subprocess.PIPE,
189 stderr=subprocess.PIPE)
  /build/tools/makeparallel/
README.md 21 claimed to a subprocess with `-j<jobs>`.
28 parallelism available to the subprocess.
33 +makeparallel subprocess arguments
  /external/autotest/client/cros/
tcpdump.py 7 import subprocess
25 self._tcpdump_proc = subprocess.Popen(
28 stderr=subprocess.STDOUT)
  /external/autotest/client/profilers/cros_perf/
cros_perf.py 15 import os, signal, subprocess
47 self._process = subprocess.Popen(cmd, shell=True,
48 stderr=subprocess.STDOUT)
  /external/autotest/client/site_tests/hardware_PerfCounterVerification/
perf_verification.py 7 import subprocess
36 out = subprocess.check_output(
40 stderr=subprocess.STDOUT)
  /external/autotest/client/site_tests/security_RendererSandbox/
security_RendererSandbox.py 7 import subprocess
22 pgrep = subprocess.Popen(['pgrep', '-f', '-l', 'type=renderer'],
23 stdout=subprocess.PIPE)
  /external/autotest/server/
site_host_route.py 5 import re, socket, subprocess
50 return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0]
  /external/bison/lib/
wait-process.c 1 /* Waiting for a subprocess to finish.
105 /* Register a subprocess as being a slave process. This means that the
106 subprocess will be terminated when its creator receives a catchable fatal
108 notices that the subprocess has exited. */
189 /* Wait for a subprocess to finish. Return its exit code.
223 _("%s subprocess"), progname);
255 _("%s subprocess"), progname);
274 _("%s subprocess got fatal signal %d"),
282 _("%s subprocess failed"), progname);
317 _("%s subprocess"), progname)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
sample_profiler.py 6 import subprocess
20 self._proc = subprocess.Popen(
22 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/
git-release-notes.py 5 import subprocess
24 revisions = subprocess.check_output(REVLIST, shell=True, stderr=subprocess.STDOUT)
  /external/libcxx/test/libcxx/android/
compiler.py 4 import subprocess
31 proc = subprocess.Popen([self.path, '-v'],
32 stderr=subprocess.PIPE)
  /external/mesa3d/
common.py 7 import subprocess
68 subprocess.call(['llvm-config', '--version'], stdout=subprocess.PIPE) == 0:
  /external/v8/tools/testrunner/server/
signatures.py 31 import subprocess
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
56 subprocess.call(["./gradlew", "assembleDebug"])
60 subprocess.call(["adb", "install", "-r", "./app/build/outputs/apk/app-debug.apk"])
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
compiler.py 4 import subprocess
31 proc = subprocess.Popen([self.path, '-v'],
32 stderr=subprocess.PIPE)
  /system/update_engine/
daemon.h 38 #include "update_engine/common/subprocess.h"
65 // The Subprocess singleton class requires a brillo::MessageLoop in the
68 Subprocess subprocess_;
  /external/autotest/client/bin/
parallel.py 65 'Subprocess raised an exception that could not be '
87 raise error.TestError("Test subprocess failed rc=%d" % (status))
92 If timeout expires, test subprocess is killed.
115 raise error.TestError("Test subprocess failed rc=%d" % (status))
  /external/autotest/client/site_tests/platform_OpenSSLActual/
platform_OpenSSLActual.py 5 import subprocess
  /external/chromium-trace/catapult/systrace/systrace/
util.py 6 import subprocess
57 adb_output = subprocess.check_output(adb_command, stderr=subprocess.STDOUT,
67 except subprocess.CalledProcessError as error:

Completed in 1824 milliseconds

1 2 3 4 5 67 8 91011>>