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

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sysconfig.py 7 import subprocess namespace
252 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
290 p = subprocess.Popen([
294 stdout=subprocess.PIPE,
310 p = subprocess.Popen([
314 stdout=subprocess.PIPE,
test_file_eintr.py 17 import subprocess namespace
85 executed as part of a python subprocess fed data_to_write.
92 # Start a subprocess to call our read method while handling a signal.
93 self._process = subprocess.Popen(
103 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
104 stderr=subprocess.PIPE)
test_hash.py 11 import subprocess namespace
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_xpickle.py 12 import subprocess namespace
99 # Prevent the subprocess from picking up invalid .pyc files.
105 worker = subprocess.Popen([python, target, "worker"],
106 stdin=subprocess.PIPE,
107 stdout=subprocess.PIPE,
108 stderr=subprocess.PIPE)
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
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
    [all...]
  /external/chromium_org/chrome/tools/process_dumps/
process_dumps_linux.py 12 import subprocess namespace
54 proc = subprocess.Popen(command, stdout=subprocess.PIPE,
55 stderr=subprocess.STDOUT, bufsize=1)
58 raise OSError('%s: %s' % (subprocess.list2cmdline(command), output))
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
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
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user.py 35 import subprocess namespace
129 subprocess.call(args + files)
143 subprocess.call(["open", "-W", "-n", "-a"] + args + files)
151 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
  /external/chromium_org/tools/
bisect_utils.py 12 import subprocess namespace
110 """Runs a subprocess with specified parameters.
125 return subprocess.call(cmd, shell=shell, cwd=cwd)
350 proc = subprocess.Popen(['bash', '-c', 'source %s && env' % path_to_file],
351 stdout=subprocess.PIPE,
352 stderr=subprocess.PIPE,
  /external/chromium_org/tools/cygprofile/
symbolize.py 16 import subprocess namespace
78 nm_p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
173 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
  /external/chromium_org/tools/gyp/
gyptest.py 13 import subprocess namespace
87 subout = subprocess.PIPE
93 suberr = subprocess.STDOUT
96 suberr = subprocess.PIPE
97 p = subprocess.Popen(command,
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
cros_browser_backend.py 6 import subprocess namespace
389 self._proc = subprocess.Popen(
391 stdout=subprocess.PIPE,
392 stderr=subprocess.PIPE,
393 stdin=subprocess.PIPE,
cros_interface.py 8 import subprocess namespace
28 """Opens a subprocess to execute a program and returns its return value.
33 cwd: If not None, the subprocess's current directory will be changed to
42 p = subprocess.Popen(args=args, cwd=cwd, stdout=devnull,
47 """Open a subprocess to execute a program and returns its output.
52 cwd: If not None, the subprocess's current directory will be changed to
62 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
63 stderr=subprocess.PIPE, stdin=devnull)
desktop_browser_backend.py 6 import subprocess as subprocess namespace
70 self._proc = subprocess.Popen(
71 args, stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
73 self._proc = subprocess.Popen(args)
  /external/chromium_org/v8/tools/
test-server.py 32 import subprocess namespace
59 code = subprocess.call(cmd, shell=True)
81 code = subprocess.call("which pip > /dev/null", shell=True)
83 apt_get_code = subprocess.call("which apt-get > /dev/null", shell=True)
99 fingerprint = subprocess.check_output("ssh-keygen -lf %s" % privkeyfile,
  /external/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
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
    [all...]
  /external/skia/tools/
svndiff.py 24 import subprocess namespace
172 proc = subprocess.Popen(args,
173 stdout=subprocess.PIPE,
174 stderr=subprocess.PIPE)
207 proc = subprocess.Popen(args, stdout=outfile)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
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
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 17 import subprocess namespace
85 executed as part of a python subprocess fed data_to_write.
92 # Start a subprocess to call our read method while handling a signal.
93 self._process = subprocess.Popen(
103 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
104 stderr=subprocess.PIPE)
test_hash.py 11 import subprocess namespace
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_xpickle.py 12 import subprocess namespace
99 # Prevent the subprocess from picking up invalid .pyc files.
105 worker = subprocess.Popen([python, target, "worker"],
106 stdin=subprocess.PIPE,
107 stdout=subprocess.PIPE,
108 stderr=subprocess.PIPE)
  /external/chromium_org/chrome/test/chromedriver/
util.py 12 import subprocess namespace
109 subprocess.call(['taskkill.exe', '/T', '/F', '/PID', str(pid)])
126 process = subprocess.Popen(cmd, cwd=cwd)
  /external/chromium_org/chrome/test/functional/media/
cns_test_base.py 10 import subprocess namespace
112 self._cns_process = subprocess.Popen(cmd, stderr=subprocess.PIPE)
  /external/chromium_org/chrome/test/pyautolib/
policy_base.py 39 import subprocess namespace
113 """Invokes a subprocess and optionally asserts the return value is zero."""
116 return subprocess.check_call(command.split(' '), stdout=devnull)
118 return subprocess.call(command.split(' '), stdout=devnull)
482 if subprocess.call(
485 subprocess.call(r'reg delete HKLM\%s /f' % reg_base)
506 subprocess.call(['suid-python', sudo_cmd_file,
514 subprocess.call(['suid-python', sudo_cmd_file,
516 subprocess.call(['suid-python', sudo_cmd_file,
519 subprocess.call(['suid-python', sudo_cmd_file
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
create_html.py 21 import subprocess namespace
143 subprocess.check_call(cmd)
144 except subprocess.CalledProcessError:

Completed in 1055 milliseconds

1 2 3 4 5 6 7 891011>>