Searched defs:subprocess (Results 1 - 25 of 458) sorted by path

1234567891011>>

/external/chromium-trace/
H A Dsystrace-legacy.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
90 subprocess.check_call(atrace_args)
91 except subprocess.CalledProcessError, e:
153 adb = subprocess.Popen(atrace_args, stdout=subprocess.PIPE,
154 stderr=subprocess.PIPE)
H A Dsystrace.py13 import errno, optparse, os, re, select, subprocess, sys, time, zlib namespace
43 adb = subprocess.Popen(getprop_args, stdout=subprocess.PIPE,
44 stderr=subprocess.PIPE)
153 adb = subprocess.Popen(atrace_args, stdout=subprocess.PIPE,
154 stderr=subprocess.PIPE)
H A Dupdate.py3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys namespace
26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_endtoend.py40 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/
H A DPRESUBMIT_test.py10 import subprocess namespace
26 self.subprocess = subprocess
/external/chromium_org/android_webview/tools/
H A Dwebview_licenses.py25 import subprocess namespace
102 p = subprocess.Popen(
104 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
191 p = subprocess.Popen(args=args, cwd=REPOSITORY_ROOT, stdout=subprocess.PIPE)
/external/chromium_org/base/allocator/
H A Dprep_libc.py19 import subprocess namespace
25 popen = subprocess.Popen(
26 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
/external/chromium_org/base/android/jni_generator/
H A Djni_generator.py16 import subprocess namespace
646 p = subprocess.Popen(args=[options.javap, '-c', '-verbose',
649 stdout=subprocess.PIPE,
650 stderr=subprocess.PIPE)
/external/chromium_org/build/android/
H A Dadb_logcat_monitor.py24 import subprocess namespace
60 process = subprocess.Popen([adb_cmd, '-s', device_id,
63 stderr=subprocess.PIPE)
81 out, err = subprocess.Popen([adb_cmd, 'devices'],
82 stdout=subprocess.PIPE,
83 stderr=subprocess.PIPE).communicate()
129 subprocess.call([adb_cmd, '-s', device_id, 'logcat', '-c'])
H A Dlighttpd_server.py20 import subprocess namespace
157 if subprocess.call(['fuser', '-kv', '%d/tcp' % port]) == 0:
160 assert subprocess.call(['fuser', '-v', '%d/tcp' % port]) != 0, \
H A Dprovision_devices.py17 import subprocess namespace
34 ps = subprocess.Popen(['ps', 'aux'], stdout = subprocess.PIPE)
40 subprocess.call(['kill', str(pid)])
48 subprocess.Popen([os.path.join(constants.DIR_SOURCE_ROOT,
/external/chromium_org/build/android/buildbot/
H A Dbb_device_status_check.py16 import subprocess namespace
222 lsusb_proc = bb_utils.SpawnCmd(['lsusb'], stdout=subprocess.PIPE)
H A Dbb_run_bot.py13 import subprocess namespace
60 proc = subprocess.Popen(['bash', '-exc',
62 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
271 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env)
277 proc = subprocess.Popen(
278 ['/bin/hostname', '-f'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Dbb_utils.py9 import subprocess namespace
52 return subprocess.Popen(command, cwd=cwd, stdout=stdout)
/external/chromium_org/build/android/buildbot/tests/
H A Dbb_run_bot_test.py7 import subprocess namespace
27 (bot, subprocess.Popen(
29 '--testing'], stdout=subprocess.PIPE, stderr=subprocess.PIPE))
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py14 import subprocess namespace
133 # This can be used in most cases like subprocess.check_output(). The output,
144 child = subprocess.Popen(args,
145 stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd)
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py20 import subprocess namespace
1494 self.logcat_process = subprocess.Popen(logcat_command, shell=True,
1512 """Stops an existing logcat recording subprocess and returns output.
H A Dchrome_test_server_spawner.py18 import subprocess namespace
232 self.process = subprocess.Popen(
H A Dcmd_helper.py5 """A wrapper for subprocess to make calling shell commands easier."""
13 import subprocess namespace
24 return subprocess.Popen(
38 """Opens a subprocess to execute a program and returns its return value.
43 cwd: If not None, the subprocess's current directory will be changed to
54 """Open a subprocess to execute a program and returns its output.
59 cwd: If not None, the subprocess's current directory will be changed to
72 """Executes a subprocess and returns its exit code and output.
77 cwd: If not None, the subprocess's current directory will be changed to
98 pipe = Popen(args, stdout=subprocess
[all...]
H A Dconstants.py11 import subprocess namespace
205 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull)
/external/chromium_org/build/android/pylib/host_driven/
H A Dtest_server.py19 import subprocess namespace
101 self._test_server_process = subprocess.Popen(
/external/chromium_org/build/android/pylib/symbols/
H A Delf_symbolizer.py13 import subprocess namespace
235 # Objects required to handle the addr2line subprocess.
386 # Thread below) is the lack of a subprocess.stdout.poll_avail_lines().
396 self._proc = subprocess.Popen(cmd, bufsize=1, stdout=subprocess.PIPE,
397 stdin=subprocess.PIPE, stderr=sys.stderr, close_fds=True)
/external/chromium_org/build/android/pylib/utils/
H A Demulator.py14 import subprocess namespace
364 self.popen = subprocess.Popen(args=emulator_command,
365 stderr=subprocess.STDOUT)
H A Dfindbugs.py9 import subprocess namespace
147 proc = subprocess.Popen(shlex.split(cmd),
148 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
H A Dxvfb.py9 import subprocess namespace
32 proc = subprocess.Popen(['Xvfb', ':9', '-screen', '0', '1024x768x24',
34 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
42 proc = subprocess.Popen('xdpyinfo >/dev/null', shell=True)

Completed in 381 milliseconds

1234567891011>>