Searched refs:subprocess (Results 201 - 225 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
H A DTestLibCython.py10 import subprocess namespace
42 p = subprocess.Popen(['gdb', '-v'], stdout=subprocess.PIPE)
63 p = subprocess.Popen(['gdb', '-batch', '-x', python_version_script.name],
64 stdout=subprocess.PIPE)
240 self.p = subprocess.Popen(
243 stderr=subprocess.PIPE,
/external/chromium_org/tools/clang/scripts/
H A Drun_tool.py43 import subprocess namespace
60 command = subprocess.Popen(args, stdout=subprocess.PIPE)
116 command = subprocess.Popen((toolname, '-p', build_directory, filename),
117 stdout=subprocess.PIPE,
118 stderr=subprocess.PIPE)
222 if subprocess.call('git diff -U0 %s | python %s -i -p1 -style=file ' % (
/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)
/external/libcxx/test/
H A Druntests.py18 import subprocess namespace
51 return subprocess.call(['timeout', '30', self.path],
52 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
66 proc = subprocess.Popen(['timeout', '30',
68 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/build/config/linux/
H A Dpkg-config.py7 import subprocess namespace
76 prefix = subprocess.check_output(["pkg-config", "--variable=prefix"] + args,
124 flag_string = subprocess.check_output(
/external/chromium_org/build/
H A Dlandmines.py24 import subprocess namespace
128 proc = subprocess.Popen([sys.executable, s], stdout=subprocess.PIPE)
/external/chromium_org/build/util/lib/common/
H A Dutil.py12 import subprocess namespace
109 subprocess.call(['taskkill.exe', '/T', '/F', '/PID', str(pid)])
125 process = subprocess.Popen(cmd, cwd=cwd)
/external/chromium_org/chrome/installer/linux/sysroot_scripts/
H A Dinstall-debian.wheezy.sysroot.py24 import subprocess namespace
124 subprocess.check_call(['curl', '-L', url, '-o', tarball])
130 subprocess.check_call(['tar', 'xf', tarball, '-C', sysroot])
/external/chromium_org/chrome/tools/
H A Dinconsistent-eol.py22 import subprocess namespace
65 result = subprocess.call('unix2dos.exe %s' % file, shell=True)
69 result = subprocess.call('dos2unix.exe %s' % file, shell=True)
/external/chromium_org/native_client_sdk/src/tools/
H A Dcreate_html.py21 import subprocess namespace
149 subprocess.check_call(cmd)
150 except subprocess.CalledProcessError:
/external/chromium_org/third_party/WebKit/Source/devtools/
H A DPRESUBMIT.py57 out, _ = input_api.subprocess.Popen(
59 stdout=input_api.subprocess.PIPE,
60 stderr=input_api.subprocess.STDOUT).communicate()
/external/chromium_org/third_party/webrtc/tools/
H A Dcompare_videos.py13 import subprocess namespace
119 barcode_decoder = subprocess.Popen(cmd, stdin=null_filehandle,
138 frame_analyzer = subprocess.Popen(cmd, stdin=null_filehandle,
/external/chromium_org/tools/android/
H A Dfind_unused_resources.py10 import subprocess namespace
61 p = subprocess.Popen(
63 stdout=subprocess.PIPE)
/external/chromium_org/tools/ipc_fuzzer/mutate/
H A Dipc_fuzzer_mut.py18 import subprocess namespace
73 if subprocess.call(cmd):
78 if subprocess.call(cmd):
/external/chromium_org/tools/
H A Dipc_messages_log.py25 import subprocess namespace
76 pipe = subprocess.Popen(['git', 'ls-files', '--', '*_messages.h'],
77 stdout=subprocess.PIPE)
/external/chromium_org/tools/win/link_limiter/
H A Dbuild_link_limiter.py9 import subprocess namespace
25 p = subprocess.Popen([filename], shell=True, stdout=subprocess.PIPE,
/external/chromium_org/v8/build/
H A Dlandmines.py22 import subprocess namespace
128 proc = subprocess.Popen([sys.executable, s], stdout=subprocess.PIPE)
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py31 import subprocess namespace
71 popen_args = subprocess.list2cmdline(args)
78 process = subprocess.Popen(
/external/lldb/utils/test/
H A Drun-dis.py8 import os, sys, subprocess namespace
33 file_output = subprocess.Popen(["file", path],
34 stdout=subprocess.PIPE).stdout.read()
/external/skia/tools/
H A Dgit_utils.py10 import subprocess namespace
44 subprocess.CalledProcessError: git returned unexpected status.
129 except (subprocess.CalledProcessError,):
144 subprocess.call([git, '--version'], stdout=devnull)
159 A string suiable for passing to subprocess functions, or None.
/external/chromium_org/build/android/
H A Dtombstones.py16 import subprocess namespace
113 proc = subprocess.Popen([stack_tool, '--arch', arch], stdin=subprocess.PIPE,
114 stdout=subprocess.PIPE)
/external/chromium_org/media/tools/constrained_network_server/
H A Dtraffic_control.py14 import subprocess namespace
350 p = subprocess.Popen(cmd_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/native_client_sdk/src/tools/lib/
H A Dget_shared_deps.py20 import subprocess namespace
157 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
158 stderr=subprocess.PIPE, bufsize=-1,
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dhttpd_test.py9 import subprocess namespace
53 self.process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
54 stderr=subprocess.PIPE)
/external/chromium_org/net/tools/quic/benchmark/
H A Drun_client.py12 import subprocess namespace
104 ps_proc = subprocess.Popen(cmd_in_list,
105 stdout=subprocess.PIPE,
106 stderr=subprocess.PIPE)

Completed in 6451 milliseconds

1234567891011>>