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

1 2 3

  /frameworks/compile/libbcc/tests/
bccarm 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)
test.py 51 proc = subprocess.Popen(["../libbcc_driver"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
56 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
106 proc = subprocess.Popen(["adb", "shell", "/system/bin/bcc"] + args, stdout=subprocess.PIPE)
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_maketokenizer.py 89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 40 adb_output = subprocess.Popen(shell_cmd_str,
48 subprocess.Popen(shell_cmd_str,
154 proc = subprocess.Popen(test_cmd, shell=True,
192 adb_output = subprocess.Popen(test_cmd, shell=True,
200 (crashed_test, err) = subprocess.Popen(
215 adb_output = subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
237 subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
244 subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
run_layout_tests.py 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]
213 (crashed_test, err) = subprocess.Popen(
230 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
253 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
run_page_cycler.py 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(
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 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/chromium/build/
compiler_version.py 22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
  /external/v8/tools/
run-valgrind.py 48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
disasm.py 74 process = subprocess.Popen(command,
  /development/testrunner/
run_command.py 98 pipe = subprocess.Popen(
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
175 subproc = subprocess.Popen(["/usr/bin/valgrind", "--tool=memcheck",
android_build.py 65 config = subprocess.Popen(command, stdout=subprocess.PIPE,
  /external/chromium-trace/
update.py 26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
  /frameworks/compile/libbcc/tools/build/
gen-build-info.py 36 proc = subprocess.Popen(['git', 'log', '-1', '--format=%H'],
46 proc = subprocess.Popen(['git', 'status'],
  /development/scripts/
symbol.py 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)
add-accounts 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
add-accounts-sdk 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
  /external/llvm/utils/git/
find-rev 24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 7 from subprocess import Popen, PIPE
52 p = Popen(command, 1, stdout=PIPE, shell=False)
  /external/webkit/Tools/wx/build/
waf_extensions.py 76 proc = subprocess.Popen(s, **kw)
  /external/chromium/build/mac/
strip_save_dsym 51 file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
96 otool_cmd = subprocess.Popen(["/usr/bin/otool", "-arch", arch, "-l", "-",
288 strip_cmd = subprocess.Popen(strip_cmdline)
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 44 return subprocess.Popen(cmd,
82 pipe = subprocess.Popen(cmdline,
105 self.pipe = subprocess.Popen(cmdline,
symbolize.py 39 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
  /build/tools/releasetools/
build_image.py 62 p = subprocess.Popen(build_command);

Completed in 462 milliseconds

1 2 3