HomeSort by relevance Sort by last modified time
    Searched defs:subprocess (Results 351 - 375 of 457) sorted by null

<<111213141516171819

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tools.py 11 import subprocess namespace
48 proc = subprocess.Popen(
50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
test_unicodedata.py 12 import subprocess namespace
232 # We use a subprocess because the unicodedata module may already have
234 popen = subprocess.Popen(args, stderr=subprocess.PIPE)
test_winsound.py 8 import subprocess namespace
246 p = subprocess.Popen([cscript_path, check_script],
247 stdout=subprocess.PIPE)
  /external/chromium/testing/gmock/scripts/
upload.py 43 import subprocess namespace
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
    [all...]
  /external/chromium/testing/gtest/scripts/
upload.py 43 import subprocess namespace
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
    [all...]
  /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/
PRESUBMIT.py 13 import subprocess namespace
490 (errors, stderrdata) = subprocess.Popen(args).communicate()
    [all...]
  /external/chromium_org/build/android/pylib/
constants.py 8 import subprocess namespace
93 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull)
  /external/chromium_org/build/android/pylib/utils/
emulator.py 19 import subprocess namespace
295 self.popen = subprocess.Popen(args=emulator_command,
296 stderr=subprocess.STDOUT)
  /external/chromium_org/chrome/test/functional/
chromeos_login.py 7 import subprocess namespace
  /external/chromium_org/chrome/test/install_test/
chrome_installer_win.py 18 import subprocess namespace
79 if subprocess.Popen(args).wait() != 0:
289 subprocess.call(cmd)
  /external/chromium_org/native_client_sdk/src/build_tools/
test_projects.py 8 import subprocess namespace
134 subprocess.check_call(args, env=env)
136 except subprocess.CalledProcessError:
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 13 import subprocess namespace
284 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
285 stderr=subprocess.PIPE, bufsize=-1)
  /external/chromium_org/testing/gtest/scripts/
upload.py 43 import subprocess namespace
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 36 import subprocess namespace
87 PIPE = subprocess.PIPE
88 STDOUT = subprocess.STDOUT
181 # We only use taskkill.exe on windows (not cygwin) because subprocess.pid
485 return subprocess.Popen(string_args, **kwargs)
488 return subprocess.call(self._stringify_args(args), **kwargs)
506 proc = subprocess.Popen(cmd_line, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
chromium.py 36 import subprocess namespace
242 self._helper = subprocess.Popen([helper_path],
243 stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftest.py 38 import subprocess namespace
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
create_test_cases.py 27 import subprocess namespace
  /external/chromium_org/tools/
bisect-builds.py 50 import subprocess namespace
330 subproc = subprocess.Popen(runcommand,
332 stdout=subprocess.PIPE,
333 stderr=subprocess.PIPE)
  /external/chromium_org/tools/code_coverage/
coverage_posix.py 50 --timeout=SECS: if a subprocess doesn't have output within SECS,
100 import subprocess namespace
365 subprocess.call(['taskkill.exe', '/PID', str(pid)])
379 """A thread to run a subprocess.
381 We want to print the output of our subprocess in real time, but also
387 subprocess doc page).
414 self._process = subprocess.Popen(self._cmd,
415 stdin=subprocess.PIPE,
417 stderr=subprocess.STDOUT)
459 self._process = subprocess.Popen(self._cmd
    [all...]
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 38 import subprocess namespace
446 """Invoke |args| as command via subprocess.Popen, filtering lines starting
448 popen = subprocess.Popen(args, stdout=subprocess.PIPE)
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
android.py 22 import subprocess namespace
    [all...]
make.py 27 import subprocess namespace
    [all...]
xcode.py 14 import subprocess namespace
279 """python -c "import fcntl, subprocess, sys
282 sys.exit(subprocess.call(sys.argv[1:]))" """
497 import subprocess namespace
499 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
606 subprocess.check_call(arguments)
    [all...]
  /external/chromium_org/v8/tools/
gc-nvp-trace-processor.py 41 import sys, types, re, subprocess, math namespace
80 gnuplot = subprocess.Popen(["gnuplot"], stdin=subprocess.PIPE)

Completed in 688 milliseconds

<<111213141516171819