Searched refs:Popen (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium/build/
H A Dcompiler_version.py22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
H A Dgyp_chromium113 p = subprocess.Popen(
/external/clang/utils/C++Tests/LLVM-Code-Symbols/
H A Dcheck-symbols8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Daction_maketokenizer.py89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
/external/v8/tools/
H A Drun-valgrind.py48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
H A Ddisasm.py74 process = subprocess.Popen(command,
H A Dtest-wrapper-gypbuild.py234 child = subprocess.Popen(' '.join(args_for_children +
248 child = subprocess.Popen(' '.join(args_for_children +
/external/chromium-trace/
H A Dupdate.py26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py7 from subprocess import Popen, PIPE namespace
52 p = Popen(command, 1, stdout=PIPE, shell=False)
/external/llvm/utils/git/
H A Dfind-rev24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py39 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
H A Dasan_symbolize.py44 return subprocess.Popen(cmd,
82 pipe = subprocess.Popen(cmdline,
105 self.pipe = subprocess.Popen(cmdline,
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py86 self._child_process = subprocess.Popen(args,
H A Duser.py124 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
H A Dexecutive_unittest.py149 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
180 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
/external/webkit/Tools/wx/build/
H A Dwaf_extensions.py76 proc = subprocess.Popen(s, **kw)
/external/chromium/build/mac/
H A Dstrip_save_dsym51 file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
96 otool_cmd = subprocess.Popen(["/usr/bin/otool", "-arch", arch, "-l", "-",
288 strip_cmd = subprocess.Popen(strip_cmdline)
/external/chromium/build/util/
H A Dlastchange.py33 proc = subprocess.Popen(['svn', 'info'],
74 # We can't just pass shell=True to Popen, as under win32 this will
79 proc = subprocess.Popen(command,
/external/chromium/chrome/common/extensions/docs/build/
H A Dbuild.py15 from subprocess import Popen, PIPE namespace
75 p = Popen(
/external/clang/tools/scan-view/
H A DReporter.py180 p = subprocess.Popen(['osascript',path],
214 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Dstartfile.py57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
/external/webkit/Tools/Scripts/
H A Drun-qtwebkit-tests28 from subprocess import Popen, PIPE, STDOUT
125 tst = Popen([test_suite.test_file_name()] + options.split(), stdout=PIPE, stderr=None)
127 tst = Popen([test_suite.test_file_name()] + options.split(), stdout=None, stderr=STDOUT)
267 Popen(self._options.browser + " " + self._options.output_file, stdout=None, stderr=None, shell=True)
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py230 p = subprocess.Popen(command,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode.
/external/gtest/test/
H A Dgtest_test_utils.py230 p = subprocess.Popen(command,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode.
/external/llvm/utils/lit/lit/
H A DUtil.py46 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,

Completed in 1485 milliseconds

123