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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/slang/tests/
test.py 15 import subprocess namespace
104 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)
  /frameworks/webview/chromium/tools/
merge_common.py 20 import subprocess namespace
110 Similar to subprocess.check_output() except that it can capture stdout and
122 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
123 stderr=subprocess.PIPE)
  /bionic/libc/tools/zoneinfo/
update-tzdata.py 9 import subprocess namespace
116 subprocess.check_call(['gpg', '--trusted-key=ED97E90E62AA7E34', '--verify',
128 subprocess.check_call(['zic', '-d', 'data', 'extracted/%s' % region])
134 subprocess.check_call(['javac', '-d', '.',
138 subprocess.check_call(['java', 'ZoneCompactor',
  /cts/suite/pts/utils/
get_csv_report.py 19 import subprocess namespace
142 p = subprocess.Popen(command.split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /cts/tools/utils/
buildCts.py 23 import subprocess namespace
  /development/build/tools/
mk_sources_zip.py 23 import subprocess namespace
217 subprocess.check_call(cmd)
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 8 import subprocess namespace
138 subprocess.check_output(['git', 'diff', '--no-index', file_origin, file_probe])
139 except subprocess.CalledProcessError as error:
  /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-trace/
systrace.py 13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
43 adb = subprocess.Popen(getprop_args, stdout=subprocess.PIPE,
44 stderr=subprocess.PIPE)
148 adb = subprocess.Popen(atrace_args, stdout=subprocess.PIPE,
149 stderr=subprocess.PIPE)
  /external/chromium_org/build/android/buildbot/
bb_run_bot.py 13 import subprocess namespace
59 proc = subprocess.Popen(['bash', '-exc',
61 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
246 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env)
bb_utils.py 9 import subprocess namespace
44 return subprocess.Popen(command, cwd=cwd, stdout=stdout)
  /external/chromium_org/build/android/gyp/util/
build_utils.py 11 import subprocess namespace
81 # This can be used in most cases like subprocess.check_call. The output,
83 # This call will directly exit on a failure in the subprocess so that no python
90 child = subprocess.Popen(args,
91 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=cwd)
  /external/chromium_org/build/android/
lighttpd_server.py 20 import subprocess namespace
155 if subprocess.call(['fuser', '-kv', '%d/tcp' % port]) == 0:
158 assert subprocess.call(['fuser', '-v', '%d/tcp' % port]) != 0, \
  /external/chromium_org/build/android/pylib/utils/
flakiness_dashboard_results_uploader.py 10 import subprocess namespace
  /external/chromium_org/build/mac/
tweak_info_plist.py 28 import subprocess namespace
36 """Runs a subprocess and waits for termination. Returns (stdout, returncode)
38 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
48 proc = subprocess.Popen(args, stdout=subprocess.PIPE,
49 stderr=subprocess.PIPE)
298 proc = subprocess.Popen(['plutil', '-convert', 'xml1', '-o', DEST_INFO_PLIST,
  /external/chromium_org/build/util/lib/common/
util.py 12 import subprocess namespace
109 subprocess.call(['taskkill.exe', '/T', '/F', '/PID', str(pid)])
125 process = subprocess.Popen(cmd, cwd=cwd)
  /external/chromium_org/build/win/importlibs/
create_importlib_win.py 13 import subprocess namespace
59 ret = subprocess.call(cmd, **kw)
  /external/chromium_org/chrome/test/chromedriver/
run_buildbot_steps.py 12 import subprocess namespace
139 if subprocess.Popen(cmd, stdout=no_output, stderr=no_output).wait():
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/
chromeos_accessibility.py 8 import subprocess namespace
webpagereplay.py 15 import subprocess namespace
164 kwargs = { 'stdout': self.log_fh, 'stderr': subprocess.STDOUT }
167 self.replay_process = subprocess.Popen(cmd_line, **kwargs)
webrtc_video_quality.py 7 import subprocess namespace
238 self._pywebsocket_server = subprocess.Popen(start_cmd, env=env)
276 rgba_converter = subprocess.Popen(start_cmd, stdout=sys.stdout,
330 compare_videos = subprocess.Popen(cmd, stdout=subprocess.PIPE,
331 stderr=subprocess.PIPE)
  /external/chromium_org/chrome/test/functional/media/
audio_tools.py 21 import subprocess namespace
76 returncode = subprocess.call(cmd, stdout=subprocess.PIPE,
77 stderr=subprocess.PIPE)
103 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
141 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE
    [all...]
media_jerky.py 34 import subprocess namespace
90 process = subprocess.Popen(
93 stdout=subprocess.PIPE)
96 subprocess.check_call(['sudo', 'chrt', '-r', '-p', str(process.pid)])
119 process = subprocess.Popen(
122 stdout=subprocess.PIPE)
  /external/chromium_org/chrome/test/functional/perf/
endure_setup.py 44 import subprocess namespace
136 if subprocess.call(['svn', 'co', URLS['depot_tools'], depot_dir]) != 0:
158 subprocess.call([gclient, '--version'])
178 if subprocess.call(config_cmd) != 0:
181 if subprocess.call(sync_cmd) != 0:
228 if subprocess.call(cmd) == 0 and os.path.exists(binary_dir):

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>