/external/chromium_org/tools/valgrind/asan/third_party/ |
asan_symbolize.py | 14 import subprocess namespace 68 return subprocess.Popen(cmd, stdin=subprocess.PIPE, 69 stdout=subprocess.PIPE) 120 return subprocess.Popen(cmd, 121 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 156 self.pipe = subprocess.Popen(cmdline, 157 stdin=subprocess.PIPE, 158 stdout=subprocess.PIPE [all...] |
/external/chromium_org/tools/valgrind/ |
memcheck_analyze.py | 18 import subprocess namespace 240 filter = subprocess.Popen("c++filt -n", stdin=subprocess.PIPE, 241 stdout=subprocess.PIPE, 242 stderr=subprocess.STDOUT, 485 ps_out = subprocess.Popen("ps p %s" % pid, shell=True, 486 stdout=subprocess.PIPE).stdout
|
tsan_analyze.py | 18 import subprocess namespace
|
/external/chromium_org/tools/win/split_link/ |
split_link.py | 15 import subprocess namespace 187 popen = subprocess.Popen([link_exe, '@' + rspfile], stdout=subprocess.PIPE) 201 popen = subprocess.Popen( 202 [link_exe, '/lib', '/nologo', '/list', lib], stdout=subprocess.PIPE) 214 subprocess.check_call([ 412 subprocess.check_call(args)
|
/external/chromium_org/tools/win/toolchain/ |
toolchain.py | 13 import subprocess namespace 32 rc = subprocess.call(command, shell=True)
|
/external/chromium_org/v8/tools/ |
run-deopt-fuzzer.py | 39 import subprocess namespace
|
/external/chromium_org/v8/tools/testrunner/server/ |
main.py | 32 import subprocess namespace
|
/external/clang/tools/clang-format/ |
git-clang-format | 32 import subprocess namespace 234 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 254 """Return a subprocess object producing the diff from `commit`. 261 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 340 p = subprocess.Popen(cmd, stdin=subprocess.PIPE [all...] |
/external/clang/tools/scan-view/ |
Reporter.py | 3 import subprocess, sys, os namespace 180 p = subprocess.Popen(['osascript',path], 181 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 214 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/external/clang/utils/ |
FindSpecRefs | 764 import subprocess namespace 765 p = subprocess.Popen(['svn', 'info', path], 767 stdout=subprocess.PIPE) [all...] |
/external/compiler-rt/lib/asan/scripts/ |
asan_symbolize.py | 15 import subprocess namespace 70 return subprocess.Popen(cmd, stdin=subprocess.PIPE, 71 stdout=subprocess.PIPE) 122 return subprocess.Popen(cmd, 123 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
/external/protobuf/python/ |
setup.py | 14 import subprocess namespace 49 if subprocess.call(protoc_command) != 0:
|
/external/skia/tools/ |
submit_try | 20 import subprocess namespace 68 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 94 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 95 stderr=subprocess.STDOUT) 273 proc = subprocess.Popen(try_args, stdout=subprocess.PIPE, 274 stderr=subprocess.STDOUT [all...] |
svndiff.py | 24 import subprocess namespace 172 proc = subprocess.Popen(args, 173 stdout=subprocess.PIPE, 174 stderr=subprocess.PIPE) 207 proc = subprocess.Popen(args, stdout=outfile)
|
/frameworks/base/tools/orientationplot/ |
orientationplot.py | 25 import subprocess namespace 448 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'WindowOrientationListener:V'], 449 stdout=subprocess.PIPE)
|
/frameworks/base/tools/velocityplot/ |
velocityplot.py | 29 import subprocess namespace 280 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'Input:*', 'VelocityTracker:*'], 281 stdout=subprocess.PIPE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
CGIHTTPServer.py | 51 # the rest to a subprocess, so we can't use buffered input. 259 # Non Unix - use subprocess 260 import subprocess namespace 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline, 277 stdin = subprocess.PIPE, 278 stdout = subprocess.PIPE, 279 stderr = subprocess.PIPE,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_platform.py | 5 import subprocess namespace 18 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
test_sysconfig.py | 7 import subprocess namespace 252 p = subprocess.Popen(cmd, stdout=subprocess.PIPE) 290 p = subprocess.Popen([ 294 stdout=subprocess.PIPE, 310 p = subprocess.Popen([ 314 stdout=subprocess.PIPE,
|
test_tools.py | 11 import subprocess namespace 48 proc = subprocess.Popen( 50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
test_unicodedata.py | 12 import subprocess namespace 232 # We use a subprocess because the unicodedata module may already have 234 popen = subprocess.Popen(args, stderr=subprocess.PIPE)
|
test_winsound.py | 8 import subprocess namespace 246 p = subprocess.Popen([cscript_path, check_script], 247 stdout=subprocess.PIPE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
CGIHTTPServer.py | 51 # the rest to a subprocess, so we can't use buffered input. 259 # Non Unix - use subprocess 260 import subprocess namespace 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline, 277 stdin = subprocess.PIPE, 278 stdout = subprocess.PIPE, 279 stderr = subprocess.PIPE,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_platform.py | 5 import subprocess namespace 18 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
test_sysconfig.py | 7 import subprocess namespace 252 p = subprocess.Popen(cmd, stdout=subprocess.PIPE) 290 p = subprocess.Popen([ 294 stdout=subprocess.PIPE, 310 p = subprocess.Popen([ 314 stdout=subprocess.PIPE,
|