/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
perf_profiler_unittest.py | 34 real_subprocess = perf_profiler.subprocess 35 perf_profiler.subprocess = mock_subprocess 51 perf_profiler.subprocess = real_subprocess
|
android_systrace_profiler.py | 7 import subprocess 48 self._profiler = subprocess.Popen(command, stdin=subprocess.PIPE, 49 stdout=subprocess.PIPE)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
client_generation_test.py | 7 import subprocess 58 retcode = subprocess.call(args) 70 retcode = subprocess.call(cmdline_args, stdout=out)
|
/external/llvm/utils/lit/lit/ |
util.py | 7 import subprocess 66 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 162 p = subprocess.Popen(command, cwd=cwd, 163 stdin=subprocess.PIPE, 164 stdout=subprocess.PIPE, 165 stderr=subprocess.PIPE, 170 # Detect Ctrl-C in subprocess. 185 cmd = subprocess.Popen(['xcrun', '--show-sdk-path'] [all...] |
/external/skia/tools/lua/ |
find_ngrams_on_ct | 10 import subprocess 53 subprocess.check_call(cmd) 54 except subprocess.CalledProcessError:
|
/external/webrtc/webrtc/tools/barcode_tools/ |
build_zxing.py | 11 import subprocess 25 process = subprocess.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr) 30 except subprocess.CalledProcessError as e:
|
/external/autotest/client/profilers/kvm_stat/ |
kvm_stat.py | 9 import time, os, subprocess, commands, logging 49 Starts kvm_stat subprocess. 56 p = subprocess.Popen(cmd, shell=True, stdout=logfile, 57 stderr=subprocess.STDOUT)
|
/external/autotest/client/tests/memory_api/ |
memory_api.py | 1 import os, subprocess, re, commands, logging 33 p1 = subprocess.Popen('%s/memory_api ' % self.tmpdir + memsize, 34 shell=True, stdin=subprocess.PIPE, 35 stdout=subprocess.PIPE)
|
/external/chromium-trace/catapult/catapult_build/ |
module_finder.py | 10 This is useful for cases where we want to use subprocess.call on a module we
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ |
cloud_storage.py | 5 import subprocess 53 gsutil = subprocess.Popen(args, stdout=subprocess.PIPE, 54 stderr=subprocess.PIPE)
|
/external/chromium-trace/catapult/telemetry/build/ |
linux_setup_msr.py | 16 import subprocess 32 proc = subprocess.Popen('/sbin/lsmod', stdout=subprocess.PIPE) 64 proc = subprocess.Popen(['/sbin/getcap', RDMSR_PATH], stdout=subprocess.PIPE) 96 ret = subprocess.call(['/sbin/modprobe', 'msr']) 102 ret = subprocess.call(['/bin/chmod', 'a+r', MSR_DEV_FILE_PATH]) 109 ret = subprocess.call(['/usr/bin/apt-get', 'install', '-y', 'msr-tools']) 115 ret = subprocess.call(['/sbin/setcap', 'cap_sys_rawio+ep', RDMSR_PATH])
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
linux_platform_backend.py | 8 import subprocess 76 p = subprocess.Popen(['/sbin/sysctl', '-w', 'vm.drop_caches=3']) 110 (out, err) = subprocess.Popen(cmd, 111 stdout=subprocess.PIPE, 112 stderr=subprocess.PIPE).communicate() 122 return 'ipfw_mod' in subprocess.Popen( 123 ['lsmod'], stdout=subprocess.PIPE).communicate()[0] 145 subprocess.check_call(['/usr/bin/sudo', 'insmod', ipfw_mod]) 147 subprocess.check_call(
|
/external/jsoncpp/test/ |
rununittests.py | 6 import subprocess 22 process = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT )
|
/external/tlsdate/etc/ |
tlsdated.conf | 15 subprocess-timeout 30
|
/external/tlsdate/man/ |
tlsdated.conf.5 | 30 How many times to try running the tlsdate subprocess. 45 .IP "subprocess-timeout [int]" 46 How many seconds to wait for the subprocess to exit. 50 How long to wait between runs of the subprocess.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
idle.pyw | 13 # We're not in the IDLE directory, help the subprocess find run.py
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_macos.py | 4 import subprocess 21 subprocess.call( 48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN], 49 stdout=subprocess.PIPE).communicate()[0]
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
idle.pyw | 13 # We're not in the IDLE directory, help the subprocess find run.py
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_macos.py | 4 import subprocess 21 subprocess.call( 48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN], 49 stdout=subprocess.PIPE).communicate()[0]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
idle.pyw | 13 # We're not in the IDLE directory, help the subprocess find run.py
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_macos.py | 4 import subprocess 21 subprocess.call( 48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN], 49 stdout=subprocess.PIPE).communicate()[0]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
idle.pyw | 13 # We're not in the IDLE directory, help the subprocess find run.py
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_macos.py | 4 import subprocess 21 subprocess.call( 48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN], 49 stdout=subprocess.PIPE).communicate()[0]
|
/external/protobuf/src/google/protobuf/compiler/ |
subprocess.cc | 33 #include <google/protobuf/compiler/subprocess.h> 58 << Subprocess::Win32ErrorMessage(GetLastError()); 62 Subprocess::Subprocess() 66 Subprocess::~Subprocess() { 75 void Subprocess::Start(const string& program, SearchMode search_mode) { 146 bool Subprocess::Communicate(const Message& input, Message* output, 258 string Subprocess::Win32ErrorMessage(DWORD error_code) { 278 Subprocess::Subprocess( [all...] |
/external/autotest/client/site_tests/security_OpenFDs/ |
security_OpenFDs.py | 9 import subprocess 69 subprocess.call('ps -ef > "%s/ps-ef.txt"' % self.resultsdir, 71 subprocess.call('ls -l /proc/*[0-9]*/fd > "%s/proc-fd.txt"' % 102 p1 = subprocess.Popen(['ps', '-C', process, '-o', 'pid,command'], 103 stdout=subprocess.PIPE) 108 p2 = subprocess.Popen(['grep', '-v', '--', 110 stdin=p1.stdout, stdout=subprocess.PIPE) 111 p3 = subprocess.Popen(['grep', arg_regex], stdin=p2.stdout, 112 stdout=subprocess.PIPE) 113 p4 = subprocess.Popen(['awk', '{print $1}'], stdin=p3.stdout [all...] |