/external/webkit/Tools/BuildSlaveSupport/ |
D | built-product-archive | 26 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 …]
|
D | test-result-archive | 26 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/ |
D | check-symbols | 3 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/ |
D | TestRunner.py | 1 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 …]
|
D | Util.py | 43 import subprocess 46 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
/external/webkit/Source/WebCore/WebCore.gyp/scripts/ |
D | action_maketokenizer.py | 46 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/ |
D | lastchange.py | 13 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/ |
D | disasm.py | 32 import subprocess 73 process = subprocess.Popen(command, 75 stdout=subprocess.PIPE, 76 stderr=subprocess.STDOUT)
|
D | run-valgrind.py | 33 import subprocess 48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | user.py | 34 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)
|
D | path.py | 33 import subprocess 86 self._child_process = subprocess.Popen(args, 87 stdin=subprocess.PIPE, 88 stdout=subprocess.PIPE)
|
D | executive.py | 43 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,
|
D | executive_unittest.py | 32 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/ |
D | Reporter.py | 3 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)
|
D | startfile.py | 11 import subprocess 37 startupinfo = subprocess.STARTUPINFO() 38 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW 57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
|
/external/chromium/build/ |
D | compiler_version.py | 15 import subprocess 22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
|
D | extract_from_cab.py | 9 import subprocess 19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir])
|
/external/protobuf/gtest/test/ |
D | gtest_test_utils.py | 47 import subprocess 221 stderr = subprocess.STDOUT 223 stderr = subprocess.PIPE 225 p = subprocess.Popen(command, 226 stdout=subprocess.PIPE, stderr=stderr,
|
/external/gtest/test/ |
D | gtest_test_utils.py | 41 import subprocess 152 p = subprocess.Popen(command, 153 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
|
/external/chromium/build/mac/ |
D | strip_save_dsym | 35 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/ |
D | gtest_test_utils.py | 47 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/ |
D | find-rev | 3 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/ |
D | server_process.py | 36 import subprocess 75 self._proc = subprocess.Popen(self._cmd, stdin=subprocess.PIPE, 76 stdout=subprocess.PIPE, 77 stderr=subprocess.PIPE,
|
/external/webkit/Tools/Scripts/ |
D | run-bindings-tests | 34 import subprocess 50 return subprocess.call(cmd) == 0 61 if subprocess.call(cmd) != 0:
|
/external/clang/utils/ |
D | token-delta.py | 5 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)
|