/external/chromium_org/v8/tools/testrunner/network/ |
network_execution.py | 31 import subprocess namespace 68 self.base_rev = subprocess.check_output( 71 self.base_svn_rev = subprocess.check_output( 77 self.patch = subprocess.check_output( 121 ldd = subprocess.check_output("ldd %s | grep libv8\\.so" % (path),
|
/external/clang/tools/scan-view/ |
startfile.py | 11 import subprocess namespace 37 startupinfo = subprocess.STARTUPINFO() 38 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW 57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
|
/external/clang/utils/ |
token-delta.py | 5 import subprocess namespace 110 p = subprocess.Popen(['clang','-dump-raw-tokens',path], 111 stdin=subprocess.PIPE, 112 stdout=subprocess.PIPE, 113 stderr=subprocess.PIPE) 190 p = subprocess.Popen([self.testProgram] + self.tempFiles)
|
/external/gtest/test/ |
gtest_test_utils.py | 47 import subprocess namespace 192 class Subprocess: 203 env: Dictionary with environment to pass to the subprocess. 217 # The subprocess module is the preferrable way of running programs 226 stderr = subprocess.STDOUT 228 stderr = subprocess.PIPE 230 p = subprocess.Popen(command, 231 stdout=subprocess.PIPE, stderr=stderr, 250 # current 'os.environ' for compatibility with the subprocess.Popen 275 # subprocess.Popen.returncode [all...] |
/external/libvpx/libvpx/third_party/googletest/src/test/ |
gtest_test_utils.py | 47 import subprocess namespace 192 class Subprocess: 203 env: Dictionary with environment to pass to the subprocess. 217 # The subprocess module is the preferrable way of running programs 226 stderr = subprocess.STDOUT 228 stderr = subprocess.PIPE 230 p = subprocess.Popen(command, 231 stdout=subprocess.PIPE, stderr=stderr, 250 # current 'os.environ' for compatibility with the subprocess.Popen 275 # subprocess.Popen.returncode [all...] |
/external/llvm/utils/Misc/ |
zkill | 71 import subprocess namespace 72 p = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE, 73 stderr=subprocess.PIPE)
|
/external/llvm/utils/lit/lit/ |
TestRunner.py | 2 import os, signal, subprocess, sys namespace 33 p = subprocess.Popen(command, cwd=cwd, 34 stdin=subprocess.PIPE, 35 stdout=subprocess.PIPE, 36 stderr=subprocess.PIPE, 41 # Detect Ctrl-C in subprocess. 75 input = subprocess.PIPE 106 # Map from the final redirections to something subprocess can handle. 115 result = subprocess.PIPE 117 result = subprocess.STDOU [all...] |
/external/mesa3d/scons/ |
custom.py | 37 import subprocess namespace 174 if subprocess.call(["pkg-config", "--exists", ' '.join(modules)]) != 0:
|
/external/protobuf/gtest/test/ |
gtest_test_utils.py | 47 import subprocess namespace 192 class Subprocess: 212 # The subprocess module is the preferrable way of running programs 221 stderr = subprocess.STDOUT 223 stderr = subprocess.PIPE 225 p = subprocess.Popen(command, 226 stdout=subprocess.PIPE, stderr=stderr, 247 # subprocess.Popen.returncode.
|
/external/skia/tools/ |
rebaseline.py | 18 import subprocess namespace 155 # Executes subprocess.call(cmd). 158 if subprocess.call(cmd) != 0:
|
svn.py | 11 import subprocess namespace 33 proc = subprocess.Popen([SVN, 'cat', svn_url], 34 stdout=subprocess.PIPE, 35 stderr=subprocess.STDOUT) 59 proc = subprocess.Popen(args, cwd=self._directory, 60 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_test_utils.py | 47 import subprocess namespace 192 class Subprocess: 203 env: Dictionary with environment to pass to the subprocess. 217 # The subprocess module is the preferrable way of running programs 226 stderr = subprocess.STDOUT 228 stderr = subprocess.PIPE 230 p = subprocess.Popen(command, 231 stdout=subprocess.PIPE, stderr=stderr, 250 # current 'os.environ' for compatibility with the subprocess.Popen 275 # subprocess.Popen.returncode [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
script_helper.py | 9 import subprocess namespace 23 # Executing the interpreter in a subprocess 33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE, 34 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 39 subprocess._cleanup() 68 return subprocess.call(cmd_line, stdout=devnull, 69 stderr=subprocess.STDOUT) 74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE [all...] |
test_file_eintr.py | 17 import subprocess namespace 85 executed as part of a python subprocess fed data_to_write. 92 # Start a subprocess to call our read method while handling a signal. 93 self._process = subprocess.Popen( 103 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 104 stderr=subprocess.PIPE)
|
test_pdb.py | 8 import subprocess namespace 26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 27 stdin=subprocess.PIPE, 28 stderr=subprocess.STDOUT, 357 proc = subprocess.Popen(cmd, 358 stdout=subprocess.PIPE, 359 stdin=subprocess.PIPE, 360 stderr=subprocess.STDOUT,
|
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess namespace 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
test_quopri.py | 4 import sys, cStringIO, subprocess namespace 179 process = subprocess.Popen([sys.executable, "-mquopri"], 180 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"], 191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
script_helper.py | 9 import subprocess namespace 23 # Executing the interpreter in a subprocess 33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE, 34 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 39 subprocess._cleanup() 68 return subprocess.call(cmd_line, stdout=devnull, 69 stderr=subprocess.STDOUT) 74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE [all...] |
test_file_eintr.py | 17 import subprocess namespace 85 executed as part of a python subprocess fed data_to_write. 92 # Start a subprocess to call our read method while handling a signal. 93 self._process = subprocess.Popen( 103 stdin=subprocess.PIPE, stdout=subprocess.PIPE, 104 stderr=subprocess.PIPE)
|
test_pdb.py | 8 import subprocess namespace 26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 27 stdin=subprocess.PIPE, 28 stderr=subprocess.STDOUT, 357 proc = subprocess.Popen(cmd, 358 stdout=subprocess.PIPE, 359 stdin=subprocess.PIPE, 360 stderr=subprocess.STDOUT,
|
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess namespace 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
test_quopri.py | 4 import sys, cStringIO, subprocess namespace 179 process = subprocess.Popen([sys.executable, "-mquopri"], 180 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"], 191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
/build/tools/releasetools/ |
check_target_files_signatures | 51 import subprocess namespace 97 stdin=subprocess.PIPE, 98 stdout=subprocess.PIPE) 171 stdin=subprocess.PIPE, 172 stdout=subprocess.PIPE) 219 stdout=subprocess.PIPE)
|
ota_from_target_files | 67 import subprocess namespace
|
/external/chromium-trace/ |
update.py | 3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys namespace 26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE) 96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
|