Home
last modified time | relevance | path

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

1234

/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 …]
/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/compiler-rt/lib/asan/scripts/
Dsymbolize.py14 import subprocess
39 …readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PI…
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
80 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
Dasan_symbolize.py14 import subprocess
44 return subprocess.Popen(cmd,
45 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
82 pipe = subprocess.Popen(cmdline,
83 stdin=subprocess.PIPE,
84 stdout=subprocess.PIPE)
105 self.pipe = subprocess.Popen(cmdline,
106 stdin=subprocess.PIPE,
107 stdout=subprocess.PIPE,
108 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/llvm/utils/lit/lit/
DTestRunner.py1 import os, signal, subprocess, sys
31 p = subprocess.Popen(command, cwd=cwd,
32 stdin=subprocess.PIPE,
33 stdout=subprocess.PIPE,
34 stderr=subprocess.PIPE,
72 input = subprocess.PIPE
112 result = subprocess.PIPE
114 result = subprocess.STDOUT
118 result = subprocess.PIPE
138 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/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
74 process = subprocess.Popen(command,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
Drun-valgrind.py33 import subprocess
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
/external/chromium-trace/
Dupdate.py3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys
26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=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)
/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/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/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/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:

1234