HomeSort by relevance Sort by last modified time
    Searched refs:subprocess (Results 251 - 275 of 495) sorted by null

<<11121314151617181920

  /external/chromium_org/build/android/
avd.py 16 import subprocess namespace
  /external/chromium_org/build/android/gyp/
get_device_configuration.py 16 import subprocess namespace
  /external/chromium_org/build/android/pylib/utils/
findbugs.py 11 import subprocess namespace
135 proc = subprocess.Popen(shlex.split(cmd),
136 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/chromium_org/chrome/test/functional/
chromeos_oobe.py 7 import subprocess namespace
  /external/chromium_org/chrome/test/nacl_test_injection/
buildbot_chrome_nacl_stage.py 13 import subprocess namespace
74 retcode = subprocess.call(cmd, cwd=cwd, env=env)
133 p = subprocess.Popen(
136 shell=True, stdout=subprocess.PIPE)
  /external/chromium_org/chrome/tools/
history-viz.py 16 import subprocess namespace
140 subproc = subprocess.Popen(['sqlite', self.file],
141 stdin=subprocess.PIPE,
142 stdout=subprocess.PIPE)
  /external/chromium_org/media/tools/constrained_network_server/
traffic_control.py 14 import subprocess namespace
350 p = subprocess.Popen(cmd_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/chromium_org/net/tools/quic/benchmark/
run_client.py 12 import subprocess namespace
104 ps_proc = subprocess.Popen(cmd_in_list,
105 stdout=subprocess.PIPE,
106 stderr=subprocess.PIPE)
  /external/chromium_org/ppapi/
PRESUBMIT.py 8 import subprocess namespace
13 p = subprocess.Popen(cmd, cwd=cwd,
14 stdout=subprocess.PIPE,
15 stderr=subprocess.PIPE)
  /external/chromium_org/remoting/tools/
zip2msi.py 53 import subprocess namespace
182 popen = subprocess.Popen(
183 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
eclipse.py 22 import subprocess namespace
179 cpp_proc = subprocess.Popen(args=command, cwd='.',
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/chromium_org/tools/
nocompile_driver.py 22 import subprocess namespace
201 { 'proc': A subprocess object representing the compiler run.
231 process = subprocess.Popen(cmdline, stdout=subprocess.PIPE,
232 stderr=subprocess.PIPE)
444 # subprocess forks, which can cause all sorts of hilarity with threads.
update_reference_build.py 23 import subprocess namespace
65 """Executes a subprocess and returns its exit code and output.
69 cwd: If not None, the subprocess's current directory will be changed to
77 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
78 stderr=subprocess.PIPE, shell=shell)
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
android_browser_finder.py 9 import subprocess namespace
81 proc = subprocess.Popen(['adb', 'devices'],
82 stdout=subprocess.PIPE,
83 stderr=subprocess.PIPE,
  /external/chromium_org/tools/valgrind/
test_suppressions.py 10 import subprocess namespace
55 pipe = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/chromium_org/v8/tools/testrunner/server/
work_handler.py 32 import subprocess namespace
110 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
115 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
142 return subprocess.call(cmd, shell=True)
  /external/clang/utils/
CmpDriver 3 import subprocess namespace
111 p = subprocess.Popen([cmd,'-###'] + args,
113 stdout=subprocess.PIPE,
114 stderr=subprocess.PIPE)
  /external/v8/tools/
test-wrapper-gypbuild.py 39 import subprocess namespace
219 subprocess.call([workspace + '/tools/presubmit.py'])
234 child = subprocess.Popen(' '.join(args_for_children +
248 child = subprocess.Popen(' '.join(args_for_children +
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen2.py 54 # The os.popen*() API delegates to the subprocess module (on Unix)
55 import subprocess namespace
56 for inst in subprocess._active:
58 subprocess._cleanup()
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
test_tools.py 11 import subprocess namespace
48 proc = subprocess.Popen(
50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen2.py 54 # The os.popen*() API delegates to the subprocess module (on Unix)
55 import subprocess namespace
56 for inst in subprocess._active:
58 subprocess._cleanup()
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
test_tools.py 11 import subprocess namespace
48 proc = subprocess.Popen(
50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_endtoend.py 40 import subprocess namespace
189 return subprocess.Popen([sys.executable] + commandline, close_fds=True,
215 subprocess.call(
478 self.server_stderr = subprocess.PIPE
486 self.server_stderr = subprocess.PIPE
512 client = self._run_python_command(args, stdout=subprocess.PIPE)
527 client = self._run_python_command(args, stdout=subprocess.PIPE)
  /external/chromium_org/tools/win/split_link/
split_link.py 15 import subprocess namespace
187 popen = subprocess.Popen([link_exe, '@' + rspfile], stdout=subprocess.PIPE)
201 popen = subprocess.Popen(
202 [link_exe, '/lib', '/nologo', '/list', lib], stdout=subprocess.PIPE)
214 subprocess.check_call([
412 subprocess.check_call(args)
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 15 import subprocess namespace
70 return subprocess.Popen(cmd, stdin=subprocess.PIPE,
71 stdout=subprocess.PIPE)
122 return subprocess.Popen(cmd,
123 stdin=subprocess.PIPE, stdout=subprocess.PIPE)

Completed in 3112 milliseconds

<<11121314151617181920