Searched refs:subprocess (Results 1 - 9 of 9) sorted by relevance

/frameworks/webview/chromium/tools/
H A Drun_webview_cts.py23 import subprocess namespace
69 proc = subprocess.Popen(
71 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Dmerge_common.py20 import subprocess namespace
124 Similar to subprocess.check_output() except that it can capture stdout and
136 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
137 stderr=subprocess.PIPE)
H A Dmerge_to_android.py24 import subprocess namespace
145 ret = subprocess.call(cmd, cwd=cwd)
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py7 import subprocess namespace
37 proc = subprocess.Popen(argv, bufsize=1, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
110 proc = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
162 proc = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess
[all...]
/frameworks/base/packages/Keyguard/scripts/
H A Dnew_merge.py9 from subprocess import call
10 from subprocess import Popen
11 from subprocess import 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/slang/tests/
H A Dtest.py15 import subprocess namespace
104 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)
/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/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)

Completed in 217 milliseconds