Searched refs:subprocess (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium/build/
H A Dextract_from_cab.py9 import subprocess namespace
19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir])
H A Dcompiler_version.py15 import subprocess namespace
22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
/external/clang/utils/C++Tests/LLVM-Code-Symbols/
H A Dcheck-symbols3 import subprocess namespace
7 import subprocess namespace
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/webkit/Tools/BuildSlaveSupport/
H A Dbuilt-product-archive26 import optparse, os, shutil, subprocess, sys
64 return subprocess.call(["ditto", "-c", "-k", "--keepParent", "--sequesterRsrc", configurationBuildDirectory, archiveFile])
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
[all...]
/external/v8/tools/
H A Drun-valgrind.py33 import subprocess namespace
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
H A Ddisasm.py32 import subprocess namespace
74 process = subprocess.Popen(command,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
/external/webkit/Tools/Scripts/
H A Dnew-run-webkit-tests32 import subprocess namespace
52 sys.exit(subprocess.call(cmd, env=env))
H A Drun-bindings-tests34 import subprocess namespace
50 return subprocess.call(cmd) == 0
61 if subprocess.call(cmd) != 0:
H A Dtest-webkit-scripts41 import subprocess namespace
62 subprocess.call(call_args)
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Daction_maketokenizer.py46 import subprocess namespace
89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
H A Daction_useragentstylesheets.py49 import subprocess namespace
95 returnCode = subprocess.call(command)
H A Drule_bison.py42 import subprocess namespace
72 returnCode = subprocess.call(['bison', '-d', '-p', prefix, inputFile, '-o', outputCpp])
/external/webkit/Tools/Scripts/webkitpy/common/system/
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/llvm/utils/git/
H A Dfind-rev3 import os, sys, subprocess namespace
24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
25 stdout=subprocess.PIPE)
/external/chromium-trace/
H A Dupdate.py3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys namespace
26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py14 import subprocess namespace
39 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
80 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
H A Dasan_symbolize.py14 import subprocess namespace
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
[all...]
/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/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/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/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/tools/scan-view/
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)
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,
/external/llvm/utils/lit/lit/
H A DTestRunner.py1 import os, signal, subprocess, sys namespace
31 p = subprocess.Popen(command, cwd=cwd,
32 stdin=subprocess.PIPE,
33 stdout=subprocess.PIPE,
34 stderr=subprocess.PIPE,
39 # Detect Ctrl-C in subprocess.
72 input = subprocess.PIPE
103 # Map from the final redirections to something subprocess can handle.
112 result = subprocess.PIPE
114 result = subprocess
[all...]

Completed in 653 milliseconds

1234