Searched refs:subprocess (Results 1 - 13 of 13) sorted by path

/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py35 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
[all...]
H A Drun_page_cycler.py15 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()
H A Drun_reliability_tests.py14 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
[all...]
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_apache2.py27 import subprocess namespace
131 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Drun_layout_tests.py17 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()
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py25 import subprocess namespace
448 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'WindowOrientationListener:V'],
449 stdout=subprocess.PIPE)
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py29 import subprocess namespace
280 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'Input:*', 'VelocityTracker:*'],
281 stdout=subprocess.PIPE)
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py31 import subprocess namespace
53 # In python 2.6, subprocess.check_output does not exist, so it is implemented here
55 p = subprocess.Popen(stdout=subprocess.PIPE, stderr=subprocess.STDOUT, *popenargs, **kwargs)
62 e = subprocess.CalledProcessError(retcode, c)
99 Uses subprocess to invoke adb.
149 p = subprocess.Popen(largs)
165 except subprocess.CalledProcessError, e:
242 except subprocess
[all...]
/frameworks/compile/libbcc/tests/
H A Dbccarm6 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)
H A Dtest.py21 import subprocess namespace
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)
/frameworks/compile/libbcc/tools/build/
H A Dgen-build-info.py22 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/compile/llvm-ndk-cc/tests/
H A Dtest.py9 import subprocess namespace
62 Ret = subprocess.call(Args, stdout=StdoutFile, stderr=StderrFile)
126 Ret = subprocess.call(Args)
/frameworks/compile/slang/tests/
H A Dtest.py15 import subprocess namespace
104 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)

Completed in 228 milliseconds