HomeSort by relevance Sort by last modified time
    Searched refs:subprocess (Results 76 - 100 of 842) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/build/
download_gold_plugin.py 12 import subprocess namespace
41 subprocess.check_call(['python', GSUTIL_PATH,
44 subprocess.check_call(['tar', 'xzf', targz_name])
  /external/v8/build/toolchain/
gcc_link_wrapper.py 14 import subprocess namespace
24 # just 'cmd' is the actual command given to Python's subprocess module.
51 result = subprocess.call(CommandToRun(args.command))
57 result = subprocess.call(CommandToRun([
  /external/v8/tools/gyp/test/ios/
gyptest-app-ios.py 13 import subprocess namespace
17 output = subprocess.check_output(['file', file])
24 output = subprocess.check_output(['file', file])
  /external/v8/tools/gyp/test/linux/
gyptest-implicit-rpath.py 14 import subprocess namespace
27 proc = subprocess.Popen(['readelf', '-d', p], stdout=subprocess.PIPE)
gyptest-target-rpath.py 14 import subprocess namespace
27 proc = subprocess.Popen(['readelf', '-d', p], stdout=subprocess.PIPE)
  /external/v8/tools/gyp/test/mac/
gyptest-installname.py 15 import subprocess namespace
32 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
gyptest-rpath.py 15 import subprocess namespace
29 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
gyptest-sdkroot.py 14 import subprocess namespace
28 proc = subprocess.Popen(
30 stdout=subprocess.PIPE, stderr=DEVNULL)
gyptest-xcode-gcc.py 14 import subprocess namespace
21 stdout = subprocess.check_output([compiler, '-v'], stderr=subprocess.STDOUT)
  /external/v8/tools/gyp/test/win/linker-flags/
update_pgd.py 10 import subprocess namespace
23 subprocess.call([options.exe])
26 subprocess.call(['pgomgr', '/merge', options.pgd])
  /external/webrtc/webrtc/tools/barcode_tools/
build_zxing.py 11 import subprocess namespace
25 process = subprocess.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr)
30 except subprocess.CalledProcessError as e:
  /frameworks/support/samples/SupportLeanbackShowcase/
build-release.py 3 import subprocess namespace
30 subprocess.call(["./gradlew", "assembleDebug"])
34 subprocess.call(["adb", "install", "-r", "./app/build/outputs/apk/app-debug.apk"])
  /external/autotest/client/site_tests/platform_DBusMachineIdRotation/
platform_DBusMachineIdRotation.py 6 import subprocess namespace
41 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
51 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
60 subprocess.check_call(['cros-machine-id-regen', '-r', 'periodic',
70 subprocess.check_call(['cros-machine-id-regen', '-r', 'periodic',
85 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
  /external/autotest/client/site_tests/platform_Perf/
platform_Perf.py 4 import os, re, subprocess namespace
34 subprocess.check_output(perf_record_args,
35 stderr=subprocess.STDOUT)
36 except subprocess.CalledProcessError as cmd_error:
49 p = subprocess.Popen(perf_report_args, stdout=subprocess.PIPE)
  /external/v8/tools/gyp/test/lib/
TestMac.py 10 import subprocess namespace
17 proc = subprocess.Popen(['lipo', '-info', file], stdout=subprocess.PIPE)
43 lines = subprocess.check_output(['xcodebuild', '-version']).splitlines()
60 self._cache['SDKBuild'] = subprocess.check_output(
67 self._cache['SDKVersion'] = subprocess.check_output(
  /external/autotest/client/site_tests/network_GobiUncleanDisconnect/
network_GobiUncleanDisconnect.py 8 import subprocess namespace
14 rv = subprocess.call(['/usr/bin/libgobi3k/open-abort'])
17 # subprocess communicates kills by returning the signal value,
  /external/autotest/site_utils/
check_hung_proc.py 21 import subprocess namespace
43 count = int(subprocess.check_output(cmd, shell = True))
  /external/chromium-trace/catapult/firefighter/bin/
deploy 7 import subprocess namespace
19 subprocess.call(args, cwd=temp_app_dir)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
desktop_platform_backend.py 6 import subprocess namespace
24 subprocess.check_call([flush_command, '--recurse', directory])
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_update.py 28 import subprocess namespace
113 p = subprocess.Popen(prefix + ['gsutil', 'update', 'gs://pub'],
114 cwd=gsutil_dst, stdout=subprocess.PIPE,
115 stderr=subprocess.PIPE)
123 p = subprocess.Popen(
125 cwd=gsutil_dst, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
133 p = subprocess.Popen(prefix + ['gsutil', 'update', suri(src_tarball)],
134 cwd=gsutil_dst, stdout=subprocess.PIPE,
135 stderr=subprocess.PIPE
    [all...]
  /external/libcxx/utils/not/
not.py 8 import subprocess namespace
26 rc = subprocess.call(argv)
  /external/llvm/utils/
bisect 6 import subprocess namespace
29 result = subprocess.call(cmd)
  /external/v8/build/config/mac/
xcrun.py 7 import subprocess namespace
17 rv = subprocess.check_call(['xcrun'] + unknown_args)
  /external/v8/gypfiles/
coverage_wrapper.py 10 import subprocess namespace
36 sys.exit(subprocess.check_call(args))
  /external/v8/tools/testrunner/local/
commands.py 29 import subprocess namespace
57 popen_args = subprocess.list2cmdline(args)
66 process = subprocess.Popen(
68 stdout=subprocess.PIPE,
69 stderr=subprocess.PIPE,
86 tk = subprocess.Popen(
88 stdout=subprocess.PIPE,
89 stderr=subprocess.PIPE,

Completed in 356 milliseconds

1 2 34 5 6 7 8 91011>>