Searched defs:subprocess (Results 26 - 50 of 64) sorted by relevance

123

/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Drule_bison.py42 import subprocess namespace
72 returnCode = subprocess.call(['bison', '-d', '-p', prefix, inputFile, '-o', outputCpp])
/external/chromium/build/mac/
H A Dstrip_save_dsym35 import subprocess namespace
51 file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
52 stdout=subprocess.PIPE)
96 otool_cmd = subprocess.Popen(["/usr/bin/otool", "-arch", arch, "-l", "-",
98 stdout=subprocess.PIPE)
288 strip_cmd = subprocess.Popen(strip_cmdline)
/external/chromium/build/util/
H A Dlastchange.py13 import subprocess namespace
33 proc = subprocess.Popen(['svn', 'info'],
34 stdout=subprocess.PIPE,
35 stderr=subprocess.PIPE,
79 proc = subprocess.Popen(command,
80 stdout=subprocess.PIPE,
81 stderr=subprocess.PIPE,
/external/clang/utils/
H A DFuzzTest10 import subprocess namespace
139 p = subprocess.Popen(test_args, stdout=stdout, stderr=stderr)
H A Dtoken-delta.py5 import subprocess namespace
110 p = subprocess.Popen(['clang','-dump-raw-tokens',path],
111 stdin=subprocess.PIPE,
112 stdout=subprocess.PIPE,
113 stderr=subprocess.PIPE)
190 p = subprocess.Popen([self.testProgram] + self.tempFiles)
H A DFindSpecRefs764 import subprocess namespace
765 p = subprocess.Popen(['svn', 'info', path],
767 stdout=subprocess.PIPE)
/external/icu4c/stubdata/
H A Dicu_dat_generator.py41 import subprocess namespace
61 ret = subprocess.call(command_list, cwd=working_dir)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_server.py39 import subprocess namespace
217 self._process = subprocess.Popen(start_cmd, env=env, stdin=subprocess.PIPE)
H A Dapache_http_server.py40 import subprocess namespace
200 self._httpd_proc = subprocess.Popen(self._start_cmd,
201 stderr=subprocess.PIPE,
H A Dserver_process.py36 import subprocess namespace
48 """This class provides a wrapper around a subprocess that
75 self._proc = subprocess.Popen(self._cmd, stdin=subprocess.PIPE,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.PIPE,
97 # ctrl+c is for the subprocess returncode to be negative
98 # SIGINT. And that agrees with the subprocess documentation.
106 if it still is (wrapper around subprocess.poll)."""
114 """Write a request to the subprocess
[all...]
H A Dwebsocket_server.py39 import subprocess namespace
199 self._process = subprocess.Popen(start_cmd,
202 stderr=subprocess.STDOUT,
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py47 import subprocess namespace
203 env: Dictionary with environment to pass to the subprocess.
217 # The subprocess module is the preferrable way of running programs
226 stderr = subprocess.STDOUT
228 stderr = subprocess.PIPE
230 p = subprocess.Popen(command,
231 stdout=subprocess.PIPE, stderr=stderr,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode.
/external/chromium-trace/
H A Dupdate.py3 import config, httplib, json, urllib, subprocess, sys namespace
49 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
/external/clang/tools/scan-view/
H A Dstartfile.py11 import subprocess namespace
37 startupinfo = subprocess.STARTUPINFO()
38 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
H A DReporter.py3 import subprocess, sys, os namespace
180 p = subprocess.Popen(['osascript',path],
181 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
214 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/gtest/test/
H A Dgtest_test_utils.py47 import subprocess namespace
203 env: Dictionary with environment to pass to the subprocess.
217 # The subprocess module is the preferrable way of running programs
226 stderr = subprocess.STDOUT
228 stderr = subprocess.PIPE
230 p = subprocess.Popen(command,
231 stdout=subprocess.PIPE, stderr=stderr,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode.
/external/llvm/utils/Misc/
H A Dzkill71 import subprocess namespace
72 p = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE,
73 stderr=subprocess.PIPE)
/external/protobuf/gtest/test/
H A Dgtest_test_utils.py47 import subprocess namespace
212 # The subprocess module is the preferrable way of running programs
221 stderr = subprocess.STDOUT
223 stderr = subprocess.PIPE
225 p = subprocess.Popen(command,
226 stdout=subprocess.PIPE, stderr=stderr,
247 # subprocess.Popen.returncode.
/external/webkit/Source/gyp/
H A Dconfigure32 import subprocess namespace
97 subprocess.call(args)
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_unittest.py32 import subprocess namespace
149 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
180 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
H A Dpath.py33 import subprocess namespace
75 # Make sure the cygpath subprocess always gets shutdown cleanly.
86 self._child_process = subprocess.Popen(args,
87 stdin=subprocess.PIPE,
88 stdout=subprocess.PIPE)
H A Duser.py34 import subprocess namespace
102 subprocess.call(args + files)
116 subprocess.call(["open", "-W", "-n", "-a"] + args + files)
124 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests.py36 import subprocess namespace
/external/llvm/utils/lit/lit/
H A DTestRunner.py1 import os, signal, subprocess, sys namespace
77 p = subprocess.Popen(command, cwd=cwd,
78 stdin=subprocess.PIPE,
79 stdout=subprocess.PIPE,
80 stderr=subprocess.PIPE,
85 # Detect Ctrl-C in subprocess.
118 input = subprocess.PIPE
149 # Map from the final redirections to something subprocess can handle.
158 result = subprocess.PIPE
160 result = subprocess
[all...]
/external/protobuf/python/
H A Dsetup.py14 import subprocess namespace
49 if subprocess.call(protoc_command) != 0:

Completed in 612 milliseconds

123