/external/chromium-trace/catapult/third_party/Paste/Paste.egg-info/ |
requires.txt | 13 [subprocess]
|
/external/tlsdate/tests/run-idle/ |
test.conf | 3 subprocess-tries 1 4 subprocess-wait-between-tries 2
|
/external/selinux/policycoreutils/sandbox/ |
start | 3 import subprocess 7 rc = subprocess.getstatusoutput(sys.argv[1])
|
/external/libcxx/test/libcxx/android/ |
build.py | 2 import subprocess 13 return not subprocess.Popen(cmd, stdout=None, stderr=None, env=env).wait()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/ |
build.py | 2 import subprocess 13 return not subprocess.Popen(cmd, stdout=None, stderr=None, env=env).wait()
|
/external/autotest/client/profilers/mpstat/ |
mpstat.py | 2 Sets up a subprocess to run mpstat on a specified interval, default 1 second 4 import time, os, subprocess 19 p = subprocess.Popen(cmd, shell=True, stdout=logfile, 20 stderr=subprocess.STDOUT)
|
/external/chromium-trace/catapult/catapult_base/catapult_base/ |
xvfb.py | 7 import subprocess 19 xvfb_process = subprocess.Popen( 20 xvfb_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/external/autotest/client/site_tests/platform_TLSDate/src/ |
test.conf | 0 subprocess-wait-between-tries 2 2 subprocess-tries 2
|
/external/v8/tools/ |
run.py | 9 import subprocess 12 sys.exit(subprocess.call(sys.argv[1:]))
|
/system/update_engine/common/ |
subprocess.cc | 17 #include "update_engine/common/subprocess.h" 54 if ((flags & Subprocess::kRedirectStderrToStdout) != 0) { 69 // Helper function to launch a process with the given Subprocess::Flags. 71 // The caller is responsible for watching the termination of the subprocess. 80 proc->SetSearchPath((flags & Subprocess::kSearchPath) != 0); 102 void Subprocess::Init( 112 Subprocess::~Subprocess() { 117 void Subprocess::OnStdoutReady(SubprocessRecord* record) { 136 void Subprocess::ChildExitedCallback(const siginfo_t& info) [all...] |
/ndk/tests/ |
util.py | 18 import subprocess 44 This is the missing subprocess.call_output, which is the combination of 45 subprocess.call and subprocess.check_output. Like call, it returns an exit 52 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 53 stderr=subprocess.STDOUT, *args, **kwargs)
|
/libcore/ojluni/src/main/java/java/lang/ |
Process.java | 46 * <p>By default, the created subprocess does not have its own terminal 54 * from the subprocess. Because some native platforms only provide 57 * the subprocess may cause the subprocess to block, or even deadlock. 59 * <p>The subprocess is not killed when there are no more references to 60 * the {@code Process} object, but rather the subprocess 75 * subprocess. Output to the stream is piped into the standard 82 * subprocess 88 * subprocess. The stream obtains data piped from the standard 95 * subprocess [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/external/autotest/client/profilers/cpistat/ |
cpistat.py | 7 import time, os, subprocess 22 p = subprocess.Popen(cmd, stdout=logfile, 23 stderr=subprocess.STDOUT)
|
/external/autotest/client/profilers/vmstat/ |
vmstat.py | 7 import time, os, subprocess 21 p = subprocess.Popen(cmd, shell=True, stdout=logfile, \ 22 stderr=subprocess.STDOUT)
|
/external/autotest/client/site_tests/network_GobiUncleanDisconnect/ |
network_GobiUncleanDisconnect.py | 8 import subprocess 14 rv = subprocess.call(['/usr/bin/libgobi3k/open-abort']) 17 # subprocess communicates kills by returning the signal value,
|
/external/compiler-rt/test/asan/android_commands/ |
android_common.py | 1 import os, subprocess, tempfile 15 return subprocess.call([ADB] + args, stdout=devnull, stderr=subprocess.STDOUT)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/external/chromium-trace/catapult/telemetry/telemetry/util/mac/ |
keychain_helper.py | 5 import subprocess 23 child = subprocess.Popen(path, stdout=subprocess.PIPE) 35 child = subprocess.Popen(command, stderr=subprocess.PIPE) 55 child = subprocess.Popen(command)
|