/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/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,
|
/external/skia/tools/ |
merge_static_libs.py | 32 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE) 36 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
|
svn.py | 37 proc = subprocess.Popen(args, cwd=self._directory,
|
/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 172 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 238 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout 277 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', opts.branch, '--pretty'],
|
/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/ |
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],
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
path.py | 86 self._child_process = subprocess.Popen(args,
|
/external/chromium/build/util/ |
lastchange.py | 33 proc = subprocess.Popen(['svn', 'info'], 74 # We can't just pass shell=True to Popen, as under win32 this will 79 proc = subprocess.Popen(command,
|