Searched defs:subprocess (Results 1 - 7 of 7) 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
110 Similar to subprocess.check_output() except that it can capture stdout and
122 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
123 stderr=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/slang/tests/
H A Dtest.py15 import subprocess namespace
104 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)
/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...]

Completed in 189 milliseconds