Searched refs:PIPE (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/chromium_org/third_party/jemalloc/chromium/
H A Dbuild-crt.py4 from subprocess import Popen, STDOUT, PIPE namespace
8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT,
/external/chromium_org/third_party/jemalloc/vendor/
H A Dbuild-crt.py4 from subprocess import Popen, STDOUT, PIPE namespace
8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT,
/external/chromium_org/build/android/buildbot/tests/
H A Dbb_run_bot_test.py29 '--testing'], stdout=subprocess.PIPE, stderr=subprocess.PIPE))
/external/chromium_org/build/
H A Dcompiler_version.py22 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Dextract_from_cab.py16 popen = subprocess.Popen(args, stdout=subprocess.PIPE)
/external/chromium_org/chrome/test/functional/media/
H A Daudio_tools.py76 returncode = subprocess.call(cmd, stdout=subprocess.PIPE,
77 stderr=subprocess.PIPE)
103 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
141 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
165 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/tools/symsrc/
H A Dsource_index.py70 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
83 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
104 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
122 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/tools/
H A Ddiagnose-me.py25 proc = subprocess.Popen(['/usr/bin/ld', '-v'], stdout=subprocess.PIPE)
36 proc = subprocess.Popen(['which', '-a', 'ld'], stdout=subprocess.PIPE)
72 proc = subprocess.Popen(['which', 'ninja'], stdout=subprocess.PIPE)
/external/clang/tools/clang-format/
H A Dclang-format-sublime.py41 p = subprocess.Popen(command, stdout=subprocess.PIPE,
42 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
H A Dclang-format.py51 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
52 stdin=subprocess.PIPE, startupinfo=startupinfo)
H A Dclang-format-diff.py69 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
70 stdin=subprocess.PIPE)
/external/chromium_org/tools/linux/
H A Ddump-static-initializers.py39 ['git', 'rev-parse'], stderr=subprocess.PIPE).wait() == 0)
45 stdin=subprocess.PIPE,
46 stdout=subprocess.PIPE)
67 stdout=subprocess.PIPE)
94 stdout=subprocess.PIPE)
132 nm = subprocess.Popen(['nm', '-S', binary], stdout=subprocess.PIPE)
146 objdump = subprocess.Popen(cmd, stdout=subprocess.PIPE)
/external/libvpx/libvpx/tools/
H A Dlint-hunks.py80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE)
115 stdin=show.stdout, stderr=subprocess.PIPE)
120 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/testing/
H A Dxvfb.py55 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
67 stdout=subprocess.PIPE,
114 ice_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env)
/external/chromium/build/
H A Dcompiler_version.py22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Dhaslanded_unittest.py38 @unittest.skipUnless(subprocess.call('which interdiff', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0, "requires interdiff")
/external/chromium_org/tools/compile_test/
H A Dcompile_test.py51 stdout=subprocess.PIPE,
52 stderr=subprocess.PIPE)
/external/chromium_org/webkit/tools/layout_tests/
H A DPRESUBMIT.py33 stdin=input_api.subprocess.PIPE,
34 stdout=input_api.subprocess.PIPE,
/external/skia/tools/
H A Dmerge_static_libs.py32 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE)
36 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
H A Dsvn.py34 stdout=subprocess.PIPE,
60 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dgardeningserver.py81 PIPE = self.server.tool.executive.PIPE
82 process = self.server.tool.executive.popen([self.server.tool.path()] + command, cwd=self.server.tool.scm().checkout_root, stdin=PIPE, stdout=PIPE, stderr=PIPE)
/external/chromium_org/build/android/
H A Dadb_logcat_monitor.py63 stderr=subprocess.PIPE)
82 stdout=subprocess.PIPE,
83 stderr=subprocess.PIPE).communicate()
/external/chromium_org/third_party/android_testrunner/
H A Drun_command.py93 stdin_dest = subprocess.PIPE
163 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
173 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
/external/chromium_org/build/android/pylib/utils/
H A Dxvfb.py32 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
/external/chromium_org/build/util/
H A Dlastchange.py35 stdout=subprocess.PIPE,
36 stderr=subprocess.PIPE,
84 stdout=subprocess.PIPE,
85 stderr=subprocess.PIPE,

Completed in 680 milliseconds

12345678910