/external/chromium_org/tools/gyp/pylib/gyp/ |
msvs_emulation.py | 12 import subprocess namespace 124 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) [all...] |
xcode_emulation.py | 14 import subprocess namespace 250 job = subprocess.Popen(['xcodebuild', '-version', '-sdk', sdk, infoitem], 251 stdout=subprocess.PIPE) [all...] |
input.py | 21 import subprocess namespace 794 # it to None to signal to subprocess.Popen that it should run the 869 p = subprocess.Popen(contents, shell=use_shell, 870 stdout=subprocess.PIPE, 871 stderr=subprocess.PIPE, 872 stdin=subprocess.PIPE, [all...] |
/external/chromium_org/tools/gyp/test/lib/ |
TestGyp.py | 13 import subprocess namespace 610 p = subprocess.Popen(['cygpath', path], stdout=subprocess.PIPE) 700 proc = subprocess.Popen(arguments, stdout=subprocess.PIPE) [all...] |
TestCmd.py | 576 import subprocess namespace 578 # The subprocess module doesn't exist in this version of Python, 583 subprocess = new.module('subprocess') variable 585 subprocess.PIPE = 'PIPE' 586 subprocess.STDOUT = 'STDOUT' 587 subprocess.mswindows = (sys.platform == 'win32') 670 subprocess.Popen = Popen3 675 # ASPN : Python Cookbook : Module to allow Asynchronous subprocess use on Windows and Posix platforms 678 PIPE = subprocess.PIP [all...] |
/external/chromium_org/tools/valgrind/ |
valgrind_test.py | 17 import subprocess namespace 862 query_proc = subprocess.Popen(query_cmd, stdout=subprocess.PIPE [all...] |
/frameworks/compile/libbcc/gdb_plugin/ |
android-commands.py | 31 import subprocess namespace 53 # In python 2.6, subprocess.check_output does not exist, so it is implemented here 55 p = subprocess.Popen(stdout=subprocess.PIPE, stderr=subprocess.STDOUT, *popenargs, **kwargs) 62 e = subprocess.CalledProcessError(retcode, c) 99 Uses subprocess to invoke adb. 149 p = subprocess.Popen(largs) 165 except subprocess.CalledProcessError, e: 242 except subprocess.CalledProcessError, e [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
msvc9compiler.py | 18 import subprocess namespace 273 popen = subprocess.Popen('"%s" %s & set' % (vcvarsall, arch), 274 stdout=subprocess.PIPE, 275 stderr=subprocess.PIPE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 559 Execute file with arguments from args in a subprocess. 568 Execute file with arguments from args in a subprocess with the 581 args in a subprocess. 591 args in a subprocess with the supplied environment. 604 Execute file with arguments from args in a subprocess. 613 Execute file with arguments from args in a subprocess with the 632 args in a subprocess with the supplied environment. 642 args in a subprocess with the supplied environment. 664 msg = "os.popen2 is deprecated. Use the subprocess module." 667 import subprocess namespace 687 import subprocess namespace 707 import subprocess namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_bz2.py | 8 import subprocess namespace 30 pop = subprocess.Popen("bunzip2", shell=True, 31 stdin=subprocess.PIPE, 32 stdout=subprocess.PIPE, 33 stderr=subprocess.STDOUT)
|
test_gdb.py | 8 import subprocess namespace 16 gdb_version, _ = subprocess.Popen(["gdb", "--version"], 17 stdout=subprocess.PIPE).communicate() 46 out, err = subprocess.Popen(base_cmd + args, 47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
|
test_threading.py | 16 import subprocess namespace 282 rc = subprocess.call([sys.executable, "-c", """if 1: 312 p = subprocess.Popen([sys.executable, "-c", """if 1: 333 stdout=subprocess.PIPE, 334 stderr=subprocess.PIPE) 346 p = subprocess.Popen([sys.executable, "-c", """if 1: 359 stdout=subprocess.PIPE, 360 stderr=subprocess.PIPE) 466 p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE [all...] |
test_warnings.py | 7 import subprocess namespace 712 p = subprocess.Popen([sys.executable, 714 stdout=subprocess.PIPE, env=newenv) 722 p = subprocess.Popen([sys.executable, 724 stdout=subprocess.PIPE, env=newenv) 732 p = subprocess.Popen([sys.executable, "-W" "ignore::UnicodeWarning", 734 stdout=subprocess.PIPE, env=newenv)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
msvc9compiler.py | 18 import subprocess namespace 273 popen = subprocess.Popen('"%s" %s & set' % (vcvarsall, arch), 274 stdout=subprocess.PIPE, 275 stderr=subprocess.PIPE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os.py | 559 Execute file with arguments from args in a subprocess. 568 Execute file with arguments from args in a subprocess with the 581 args in a subprocess. 591 args in a subprocess with the supplied environment. 604 Execute file with arguments from args in a subprocess. 613 Execute file with arguments from args in a subprocess with the 632 args in a subprocess with the supplied environment. 642 args in a subprocess with the supplied environment. 664 msg = "os.popen2 is deprecated. Use the subprocess module." 667 import subprocess namespace 687 import subprocess namespace 707 import subprocess namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_bz2.py | 8 import subprocess namespace 30 pop = subprocess.Popen("bunzip2", shell=True, 31 stdin=subprocess.PIPE, 32 stdout=subprocess.PIPE, 33 stderr=subprocess.STDOUT)
|
test_gdb.py | 8 import subprocess namespace 16 gdb_version, _ = subprocess.Popen(["gdb", "--version"], 17 stdout=subprocess.PIPE).communicate() 46 out, err = subprocess.Popen(base_cmd + args, 47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
|
test_threading.py | 16 import subprocess namespace 282 rc = subprocess.call([sys.executable, "-c", """if 1: 312 p = subprocess.Popen([sys.executable, "-c", """if 1: 333 stdout=subprocess.PIPE, 334 stderr=subprocess.PIPE) 346 p = subprocess.Popen([sys.executable, "-c", """if 1: 359 stdout=subprocess.PIPE, 360 stderr=subprocess.PIPE) 466 p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE [all...] |
test_warnings.py | 7 import subprocess namespace 712 p = subprocess.Popen([sys.executable, 714 stdout=subprocess.PIPE, env=newenv) 722 p = subprocess.Popen([sys.executable, 724 stdout=subprocess.PIPE, env=newenv) 732 p = subprocess.Popen([sys.executable, "-W" "ignore::UnicodeWarning", 734 stdout=subprocess.PIPE, env=newenv)
|
/external/chromium_org/chrome/test/functional/ |
perf_endure.py | 39 import subprocess namespace 208 self._proc = subprocess.Popen( 233 returncode = subprocess.call(gsutil_command, shell=True) [all...] |
/external/chromium_org/tools/ |
bisect-perf-regression.py | 46 import subprocess namespace 237 return subprocess.call(command, shell=shell) 256 proc = subprocess.Popen(command, 258 stdout=subprocess.PIPE) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
ninja.py | 11 import subprocess namespace [all...] |
/external/chromium_org/v8/tools/ |
ll_prof.py | 38 import subprocess namespace 736 process = subprocess.Popen( 738 shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
command_line_interface.cc | 54 #include <google/protobuf/compiler/subprocess.h> 1158 Subprocess subprocess; local [all...] |
/external/v8/tools/ |
ll_prof.py | 38 import subprocess namespace 711 process = subprocess.Popen( 713 shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|