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

<<111213141516171819

  /external/chromium_org/v8/tools/
presubmit.py 44 import subprocess namespace
46 from subprocess import PIPE
110 process = subprocess.Popen(command, stderr=subprocess.PIPE)
291 output = subprocess.Popen('git ls-files --full-name',
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
upload.py 43 import subprocess namespace
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
    [all...]
  /external/mesa3d/src/glsl/tests/lower_jumps/
create_test_cases.py 27 import subprocess namespace
  /external/skia/tools/skpdiff/
skpdiff_server.py 11 import subprocess namespace
164 git_show_proc = subprocess.Popen(['git', 'show', 'HEAD:' + git_path],
165 stdout=subprocess.PIPE)
  /external/v8/tools/
gc-nvp-trace-processor.py 41 import sys, types, re, subprocess, math namespace
80 gnuplot = subprocess.Popen(["gnuplot"], stdin=subprocess.PIPE)
presubmit.py 44 import subprocess namespace
46 from subprocess import PIPE
110 process = subprocess.Popen(command, stderr=subprocess.PIPE)
275 output = subprocess.Popen('git ls-files --full-name',
  /pdk/apps/CameraITS/pymodules/its/
device.py 24 import subprocess namespace
99 self.proc = subprocess.Popen(
101 stdout=subprocess.PIPE)
503 subprocess.check_call(
504 cmd.split(), stdout=devnull, stderr=subprocess.STDOUT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hash.py 11 import subprocess namespace
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_signal.py 8 import subprocess namespace
21 """Use os._exit(0) to exit the current subprocess.
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)])
test_site.py 15 import subprocess namespace
171 rc = subprocess.call([sys.executable, '-c',
178 rc = subprocess.call([sys.executable, '-s', '-c',
185 rc = subprocess.call([sys.executable, '-c',
192 rc = subprocess.call([sys.executable, '-c',
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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
webbrowser.py 9 import subprocess namespace
176 p = subprocess.Popen(cmdline)
178 p = subprocess.Popen(cmdline, close_fds=True)
193 p = subprocess.Popen(cmdline)
198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid)
236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,
240 # wait five seconds. If the subprocess is not finished, the
366 p = subprocess.Popen(["kfmclient", action, url],
378 p = subprocess.Popen(["konqueror", "--silent", url],
391 p = subprocess.Popen(["kfm", "-d", url]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hash.py 11 import subprocess namespace
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
161 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
test_signal.py 8 import subprocess namespace
21 """Use os._exit(0) to exit the current subprocess.
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)])
test_site.py 15 import subprocess namespace
171 rc = subprocess.call([sys.executable, '-c',
178 rc = subprocess.call([sys.executable, '-s', '-c',
185 rc = subprocess.call([sys.executable, '-c',
192 rc = subprocess.call([sys.executable, '-c',
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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
webbrowser.py 9 import subprocess namespace
176 p = subprocess.Popen(cmdline)
178 p = subprocess.Popen(cmdline, close_fds=True)
193 p = subprocess.Popen(cmdline)
198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid)
236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,
240 # wait five seconds. If the subprocess is not finished, the
366 p = subprocess.Popen(["kfmclient", action, url],
378 p = subprocess.Popen(["konqueror", "--silent", url],
391 p = subprocess.Popen(["kfm", "-d", url]
    [all...]
  /build/tools/releasetools/
common.py 25 import subprocess namespace
64 """Create and return a subprocess.Popen object, printing the command
68 return subprocess.Popen(args, **kwargs)
281 p1 = Run(cmd, stdout=subprocess.PIPE)
314 p = Run(cmd, stdout=subprocess.PIPE)
364 p = Run(cmd, stdout=subprocess.PIPE)
400 stderr=subprocess.STDOUT)
410 stderr=subprocess.PIPE)
462 p = Run(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE
    [all...]
  /external/chromium_org/base/android/jni_generator/
jni_generator.py 16 import subprocess namespace
504 p = subprocess.Popen(args=['javap', class_name],
506 stdout=subprocess.PIPE,
507 stderr=subprocess.PIPE)
541 p = subprocess.Popen(args=['cpp', '-fpreprocessed'],
542 stdin=subprocess.PIPE,
543 stdout=subprocess.PIPE,
544 stderr=subprocess.PIPE)
    [all...]
  /external/chromium_org/chrome/test/functional/
nacl_sdk.py 17 import subprocess namespace
124 subprocess.call(['chmod', '-R', '755', self._extracted_sdk_path])
127 subprocess.Popen([source_file, 'list'],
128 stdout=subprocess.PIPE,
129 stderr=subprocess.PIPE).communicate()
143 updated_output = subprocess.Popen([source_file, 'update'],
144 stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
190 proc = subprocess.Popen(['make RUN'], shell=True, cwd=examples_path)
stress.py 47 import subprocess namespace
582 subprocess.call(windbg_cmd)
  /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/build_tools/
update_nacl_manifest.py 27 import subprocess namespace
226 except subprocess.CalledProcessError:
260 """Run gsutil as a subprocess.
272 stdin_pipe = subprocess.PIPE
277 process = subprocess.Popen(cmd, stdin=stdin_pipe, stdout=subprocess.PIPE,
278 stderr=subprocess.PIPE)
286 raise subprocess.CalledProcessError(process.returncode, ' '.join(cmd))
753 except subprocess.CalledProcessError:
    [all...]
  /external/chromium_org/remoting/tools/
me2me_virtual_host.py 25 import subprocess namespace
301 ret_code = subprocess.call("xauth add :%d . `mcookie`" % display,
331 self.x_proc = subprocess.Popen(
346 proc = subprocess.Popen("xdpyinfo", env=self.child_env, stdout=devnull)
362 proc = subprocess.Popen("setxkbmap -rules evdev", env=self.child_env,
375 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
377 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
384 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
390 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
406 self.session_proc = subprocess.Popen(xsession_command
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py 31 import subprocess namespace

Completed in 1315 milliseconds

<<111213141516171819