HomeSort by relevance Sort by last modified time
    Searched refs:subprocess (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /frameworks/compile/libbcc/tests/
bccarm 6 import subprocess namespace
11 proc = subprocess.Popen(["bcc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
16 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
58 proc = subprocess.Popen(remoteCmdLine, stdout=subprocess.PIPE)
  /external/chromium/build/
extract_from_cab.py 9 import subprocess namespace
19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir])
compiler_version.py 15 import subprocess namespace
22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 3 import subprocess namespace
7 import subprocess namespace
8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
9 stderr=subprocess.PIPE)
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
11 stderr=subprocess.PIPE)
  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 14 import subprocess namespace
40 adb_output = subprocess.Popen(shell_cmd_str,
41 shell=True, stdout=subprocess.PIPE,
42 stderr=subprocess.PIPE).communicate()[0]
48 subprocess.Popen(shell_cmd_str,
49 shell=True, stdout=subprocess.PIPE,
50 stderr=subprocess.PIPE).communicate()
154 proc = subprocess.Popen(test_cmd, shell=True,
155 stdout=subprocess.PIPE,
156 stderr=subprocess.PIPE
    [all...]
run_layout_tests.py 35 import subprocess namespace
62 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
167 adb_output = subprocess.Popen(generate_test_list_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
205 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0
    [all...]
run_page_cycler.py 15 import subprocess namespace
88 (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
118 (adb_output, err) = subprocess.Popen(
120 stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  /external/webkit/Tools/BuildSlaveSupport/
built-product-archive 26 import optparse, os, shutil, subprocess, sys
64 return subprocess.call(["ditto", "-c", "-k", "--keepParent", "--sequesterRsrc", configurationBuildDirectory, archiveFile])
74 if subprocess.call(["cp", "-R", binDirectory, thinBinDirectory]):
77 if subprocess.call("rm -f %s" % os.path.join(thinBinDirectory, "*.ilk"), shell=True):
80 if subprocess.call(["zip", "-r", archiveFile, "bin"], cwd=thinDirectory):
96 if subprocess.call('cp -R %s %s' % (fromDir, toDir), shell=True):
104 if subprocess.call(["zip", "-y", "-r", archiveFile, "."], cwd=thinDirectory):
117 if subprocess.call(["ditto", "-x", "-k", archiveFile, buildDirectory]):
128 safariPath = subprocess.Popen('cygpath -w "$PROGRAMFILES"/Safari',
129 shell=True, stdout=subprocess.PIPE).communicate()[0].strip(
    [all...]
  /external/v8/tools/
run-valgrind.py 33 import subprocess namespace
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
disasm.py 32 import subprocess namespace
74 process = subprocess.Popen(command,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
  /external/webkit/Tools/Scripts/
new-run-webkit-tests 32 import subprocess namespace
52 sys.exit(subprocess.call(cmd, env=env))
run-bindings-tests 34 import subprocess namespace
50 return subprocess.call(cmd) == 0
61 if subprocess.call(cmd) != 0:
  /development/testrunner/
run_command.py 21 import subprocess namespace
39 """Spawn and retry a subprocess to run the given shell command.
66 """Spawns a subprocess to run the given shell command.
90 output_dest = subprocess.PIPE
95 stdin_dest = subprocess.PIPE
98 pipe = subprocess.Popen(
103 stderr=subprocess.STDOUT,
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
168 stderr=subprocess.STDOUT
    [all...]
android_build.py 23 import subprocess namespace
65 config = subprocess.Popen(command, stdout=subprocess.PIPE,
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_maketokenizer.py 46 import subprocess namespace
89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
action_useragentstylesheets.py 49 import subprocess namespace
95 returnCode = subprocess.call(command)
  /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,
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 17 import subprocess namespace
46 (stdoutdata, stderrdata) = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
63 subprocess.Popen(cmd, shell=True).wait()
69 subprocess.Popen(cmd, shell=True).wait()
  /external/llvm/utils/git/
find-rev 3 import os, sys, subprocess namespace
24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
25 stdout=subprocess.PIPE)
  /external/chromium-trace/
update.py 3 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)
  /development/scripts/
symbol.py 12 import subprocess namespace
25 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
171 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
237 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
276 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE
    [all...]
add-accounts 28 import subprocess namespace
35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
add-accounts-sdk 28 import subprocess namespace
35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 14 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/webkit/Tools/Scripts/webkitpy/common/system/
path.py 33 import subprocess namespace
75 # Make sure the cygpath subprocess always gets shutdown cleanly.
86 self._child_process = subprocess.Popen(args,
87 stdin=subprocess.PIPE,
88 stdout=subprocess.PIPE)

Completed in 1064 milliseconds

1 2 3 4 5