/external/chromium-trace/catapult/catapult_build/ |
test_runner.py | 8 import subprocess 32 return subprocess.call(command)
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
ios_device.py | 8 import subprocess 30 devices = subprocess.check_output('system_profiler SPUSBDataType', shell=True)
|
/external/chromium-trace/catapult/telemetry/telemetry/testing/ |
unittest_runner.py | 6 import subprocess 39 return subprocess.call([sys.executable, path_to_run_tests] + args, env=env)
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/ |
install.py | 10 import subprocess 34 p = subprocess.Popen([
|
/external/chromium-trace/catapult/third_party/Paste/Paste.egg-info/ |
entry_points.txt | 3 cgi = paste.cgiapp:make_cgi_application [subprocess] 29 wdg_validate = paste.debug.wdg_validate:make_wdg_validate_middleware [subprocess]
|
/external/clang/utils/perf-training/ |
perf-helper.py | 12 import subprocess 36 subprocess.check_call(cmd)
|
/external/v8/tools/ |
isolate_driver.py | 15 import subprocess 60 return subprocess.call(
|
/system/core/adb/ |
shell_service_test.cpp | 44 // Helpers to start and cleanup a subprocess. Cleanup normally does not 78 // Subprocess should send its FD to SHELL_EXIT_NOTIFY_FD for cleanup. 171 // Tests a raw subprocess with no protocol. 178 // [ -t 0 ] == 0 means we have a terminal (PTY). Even when requesting a raw subprocess, without 183 // Tests a PTY subprocess with no protocol. 194 // Tests a raw subprocess with the shell protocol. 206 // Tests a PTY subprocess with the shell protocol. 249 // Tests closing raw subprocess stdin.
|
/system/tools/aidl/tests/ |
integration-test.py | 9 import subprocess 82 subprocess.CalledProcessError on command exit != 0. 96 subprocess.CalledProcessError on failure. 113 subprocess.CalledProcessError on command exit != 0. 118 p = subprocess.Popen(command, shell=True, close_fds=True, 119 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 123 raise subprocess.CalledProcessError(p.returncode, command)
|
/external/autotest/client/cros/audio/ |
cmd_utils.py | 12 import subprocess 15 from subprocess import PIPE 151 Returns the output from standard output if 'stdout' is subprocess.PIPE. 159 out = ps.communicate()[0] if stdout == subprocess.PIPE else None 165 '''Returns a Popen object just as subprocess.Popen does but with the 181 ps = subprocess.Popen(args, stdin=stdin, stdout=stdout, stderr=stderr,
|
/external/autotest/client/cros/cellular/ |
mmtest.py | 7 import dbus, os, subprocess, time 41 self.fakenet_process = subprocess.Popen( 43 stdout=subprocess.PIPE) 61 self.fakemodem_process = subprocess.Popen( 64 stdout=subprocess.PIPE) 113 self.modemmanager = subprocess.Popen(['/usr/sbin/modem-manager',
|
/external/autotest/client/site_tests/platform_TLSDate/ |
platform_TLSDate.py | 5 import os, pwd, subprocess, tempfile 43 self._proc = subprocess.Popen(args, stdin=subprocess.PIPE, 44 stderr=subprocess.PIPE) 101 Tests that a subprocess that delays for one second is waited on 113 Tests that a subprocess that delays for too long is considered hung and
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
video.py | 5 import subprocess 125 proc = subprocess.Popen(['avconv', '-i', video], stderr=subprocess.PIPE) 162 proc = subprocess.Popen(['avconv', '-i', mp4_file, '-vcodec', 165 stderr=subprocess.PIPE, stdout=subprocess.PIPE)
|
/external/chromium-trace/catapult/third_party/vinn/bin/ |
update_v8 | 23 import subprocess 107 subprocess.check_call('fetch v8', shell=True) 109 subprocess.check_call('git checkout {0}'.format(v8_version), shell=True) 114 subprocess.check_call( 116 subprocess.check_call(V8_COMPILE_CMD, shell=True) 118 subprocess.check_call(V8_STRIP_CMD, shell=True)
|
/external/clang/ |
update-prebuilts.py | 25 import subprocess 106 subprocess.check_call( 115 subprocess.check_call(cmd) 124 subprocess.check_call( 133 subprocess.check_call(['git', 'add', install_subdir]) 149 subprocess.check_call(['git', 'commit', '-m', message])
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 54 # The os.popen*() API delegates to the subprocess module (on Unix) 55 import subprocess 56 for inst in subprocess._active: 58 subprocess._cleanup() 59 self.assertFalse(subprocess._active, "subprocess._active not empty")
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
run.py | 53 """Start the Python execution server in a subprocess 55 In the Python subprocess, RPCServer is instantiated with handlerclass 74 #time.sleep(15) # test subprocess not responding 79 print>>sys.stderr, "IDLE Subprocess: no IP port passed in sys.argv." 127 print>>sys.__stderr__,"IDLE Subprocess: socket error: "\ 130 print>>sys.__stderr__, "IDLE Subprocess: Connection to "\ 144 msg = "IDLE's subprocess can't connect to %s:%d. This may be due "\ 148 tkMessageBox.showerror("IDLE Subprocess Error", msg, parent=root) 150 tkMessageBox.showerror("IDLE Subprocess Error", 211 """Exit subprocess, possibly after first deleting sys.exitfun [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
run.py | 53 """Start the Python execution server in a subprocess 55 In the Python subprocess, RPCServer is instantiated with handlerclass 74 #time.sleep(15) # test subprocess not responding 79 print>>sys.stderr, "IDLE Subprocess: no IP port passed in sys.argv." 127 print>>sys.__stderr__,"IDLE Subprocess: socket error: "\ 130 print>>sys.__stderr__, "IDLE Subprocess: Connection to "\ 144 msg = "IDLE's subprocess can't connect to %s:%d. This may be due "\ 148 tkMessageBox.showerror("IDLE Subprocess Error", msg, parent=root) 150 tkMessageBox.showerror("IDLE Subprocess Error", 211 """Exit subprocess, possibly after first deleting sys.exitfun [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 53 """Start the Python execution server in a subprocess 55 In the Python subprocess, RPCServer is instantiated with handlerclass 74 #time.sleep(15) # test subprocess not responding 79 print>>sys.stderr, "IDLE Subprocess: no IP port passed in sys.argv." 127 print>>sys.__stderr__,"IDLE Subprocess: socket error: "\ 130 print>>sys.__stderr__, "IDLE Subprocess: Connection to "\ 144 msg = "IDLE's subprocess can't connect to %s:%d. This may be due "\ 148 tkMessageBox.showerror("IDLE Subprocess Error", msg, parent=root) 150 tkMessageBox.showerror("IDLE Subprocess Error", 211 """Exit subprocess, possibly after first deleting sys.exitfun [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 53 """Start the Python execution server in a subprocess 55 In the Python subprocess, RPCServer is instantiated with handlerclass 74 #time.sleep(15) # test subprocess not responding 79 print>>sys.stderr, "IDLE Subprocess: no IP port passed in sys.argv." 127 print>>sys.__stderr__,"IDLE Subprocess: socket error: "\ 130 print>>sys.__stderr__, "IDLE Subprocess: Connection to "\ 144 msg = "IDLE's subprocess can't connect to %s:%d. This may be due "\ 148 tkMessageBox.showerror("IDLE Subprocess Error", msg, parent=root) 150 tkMessageBox.showerror("IDLE Subprocess Error", 211 """Exit subprocess, possibly after first deleting sys.exitfun [all...] |
/frameworks/base/core/tests/overlaytests/ |
testrunner.py | 7 import subprocess 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.PIPE [all...] |
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ |
test_pep420_nspkg.py | 9 import subprocess 48 p = subprocess.Popen([sys.executable, '-c', script], 49 stdout=subprocess.PIPE, 50 stderr=subprocess.STDOUT, 160 p = subprocess.Popen([sys.executable, '-c', script], 161 stdout=subprocess.PIPE, 162 stderr=subprocess.STDOUT,
|