Home
last modified time | relevance | path

Searched refs:subprocess (Results 1 – 25 of 75) sorted by relevance

123

/external/webkit/Tools/BuildSlaveSupport/
Dbuilt-product-archive26 import optparse, os, shutil, subprocess, sys
64 …return subprocess.call(["ditto", "-c", "-k", "--keepParent", "--sequesterRsrc", configurationBuild…
74 if subprocess.call(["cp", "-R", binDirectory, thinBinDirectory]):
77 if subprocess.call("rm -f %s" % os.path.join(thinBinDirectory, "*.ilk"), shell=True):
80 if subprocess.call(["zip", "-r", archiveFile, "bin"], cwd=thinDirectory):
96 if subprocess.call('cp -R %s %s' % (fromDir, toDir), shell=True):
104 if subprocess.call(["zip", "-y", "-r", archiveFile, "."], cwd=thinDirectory):
117 if subprocess.call(["ditto", "-x", "-k", archiveFile, buildDirectory]):
128 safariPath = subprocess.Popen('cygpath -w "$PROGRAMFILES"/Safari',
129 shell=True, stdout=subprocess.PIPE).communicate()[0].strip()
[all …]
Dtest-result-archive26 import optparse, os, shutil, subprocess, sys, zipfile
73 … if subprocess.call(["ditto", "-c", "-k", "--sequesterRsrc", layoutTestResultsDir, archiveFile]):
76 if subprocess.call(["zip", "-r", archiveFile, "."], cwd=layoutTestResultsDir):
/external/clang/utils/C++Tests/LLVM-Code-Symbols/
Dcheck-symbols3 import subprocess
7 import subprocess
8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
9 stderr=subprocess.PIPE)
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
11 stderr=subprocess.PIPE)
/external/llvm/utils/lit/lit/
DTestRunner.py1 import os, signal, subprocess, sys
27 p = subprocess.Popen(command, cwd=cwd,
28 stdin=subprocess.PIPE,
29 stdout=subprocess.PIPE,
30 stderr=subprocess.PIPE,
68 input = subprocess.PIPE
108 result = subprocess.PIPE
110 result = subprocess.STDOUT
114 result = subprocess.PIPE
134 if (stderr == subprocess.STDOUT and stdout != subprocess.PIPE):
[all …]
DUtil.py43 import subprocess
46 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
Daction_maketokenizer.py46 import subprocess
89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
/external/chromium/build/util/
Dlastchange.py13 import subprocess
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/v8/tools/
Ddisasm.py32 import subprocess
73 process = subprocess.Popen(command,
75 stdout=subprocess.PIPE,
76 stderr=subprocess.STDOUT)
Drun-valgrind.py33 import subprocess
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
/external/webkit/Tools/Scripts/webkitpy/common/system/
Duser.py34 import subprocess
102 subprocess.call(args + files)
116 subprocess.call(["open", "-W", "-n", "-a"] + args + files)
124 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
Dpath.py33 import subprocess
86 self._child_process = subprocess.Popen(args,
87 stdin=subprocess.PIPE,
88 stdout=subprocess.PIPE)
Dexecutive.py43 import subprocess
119 child_process = subprocess.Popen(args,
120 stdout=subprocess.PIPE,
121 stderr=subprocess.STDOUT,
334 return (subprocess.PIPE, input)
364 stderr = subprocess.STDOUT if return_stderr else None
366 process = subprocess.Popen(args,
368 stdout=subprocess.PIPE,
Dexecutive_unittest.py32 import subprocess
149 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
180 process = subprocess.Popen(never_ending_command(), stdout=subprocess.PIPE)
/external/clang/tools/scan-view/
DReporter.py3 import subprocess, sys, os
180 p = subprocess.Popen(['osascript',path],
181 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
214 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dstartfile.py11 import subprocess
37 startupinfo = subprocess.STARTUPINFO()
38 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
/external/chromium/build/
Dcompiler_version.py15 import subprocess
22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
Dextract_from_cab.py9 import subprocess
19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir])
/external/protobuf/gtest/test/
Dgtest_test_utils.py47 import subprocess
221 stderr = subprocess.STDOUT
223 stderr = subprocess.PIPE
225 p = subprocess.Popen(command,
226 stdout=subprocess.PIPE, stderr=stderr,
/external/gtest/test/
Dgtest_test_utils.py41 import subprocess
152 p = subprocess.Popen(command,
153 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
/external/chromium/build/mac/
Dstrip_save_dsym35 import subprocess
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/testing/gtest/test/
Dgtest_test_utils.py47 import subprocess
226 stderr = subprocess.STDOUT
228 stderr = subprocess.PIPE
230 p = subprocess.Popen(command,
231 stdout=subprocess.PIPE, stderr=stderr,
/external/llvm/utils/git/
Dfind-rev3 import os, sys, subprocess
24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
25 stdout=subprocess.PIPE)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dserver_process.py36 import subprocess
75 self._proc = subprocess.Popen(self._cmd, stdin=subprocess.PIPE,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.PIPE,
/external/webkit/Tools/Scripts/
Drun-bindings-tests34 import subprocess
50 return subprocess.call(cmd) == 0
61 if subprocess.call(cmd) != 0:
/external/clang/utils/
Dtoken-delta.py5 import subprocess
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)

123