Home
last modified time | relevance | path

Searched refs:check_output (Results 1 – 25 of 98) sorted by relevance

1234

/external/autotest/contrib/
Dwatch_expensive_rpcs.py38 conn = subprocess.check_output('become chromeos-test@cautotest -- '
48 straced = subprocess.check_output('become chromeos-test@cautotest -- '
57 lsof = subprocess.check_output('become chromeos-test@%s -- '
61 cmdline = subprocess.check_output('become chromeos-test@%s -- '
/external/v8/build/config/mac/
Dsdk_info.py25 lines = subprocess.check_output(['xcodebuild', '-version']).splitlines()
32 settings['machine_os_build'] = subprocess.check_output(
38 lines = subprocess.check_output(['xcodebuild', '-version', '-sdk',
/external/autotest/site_utils/
Ddeploy_production_local.py59 out = subprocess.check_output(['repo', 'status'], stderr=subprocess.STDOUT)
74 output = strip_terminal_codes(subprocess.check_output(cmd))
111 subprocess.check_output(['repo', 'sync'])
173 subprocess.check_output(expanded_command, shell=True,
212 return subprocess.check_output(['sudo', 'status', service_name])
312 out = subprocess.check_output(cmd, cwd=after_dir,
/external/libvorbis/test/
Dtest.c30 static int check_output (const float * data_in, unsigned len, float allowable);
62 if (check_output (data_in, ARRAY_LEN (data_in), (.15f - .1f*q)) != 0) in main()
80 check_output (const float * data_in, unsigned len, float allowable) in check_output() function
/external/v8/tools/gyp/test/lib/
DTestMac.py43 lines = subprocess.check_output(['xcodebuild', '-version']).splitlines()
60 self._cache['SDKBuild'] = subprocess.check_output(
67 self._cache['SDKVersion'] = subprocess.check_output(
/external/v8/tools/
Dfind-commit-for-patch.py51 return subprocess.check_output(cmd).strip()
59 output = subprocess.check_output(cmd)
90 print(subprocess.check_output(["git", "log", "-1", commit]))
/external/v8/tools/gyp/test/ios/
Dgyptest-extension.py17 if expected not in subprocess.check_output(['nm','-gU', p]):
22 if expected not in subprocess.check_output(['nm', p]):
Dgyptest-app-ios.py17 output = subprocess.check_output(['file', file])
24 output = subprocess.check_output(['file', file])
/external/lldb/utils/vim-lldb/python-vim-lldb/
Dimport_lldb.py28 from subprocess import check_output, CalledProcessError
31 lldb_minus_p_path = check_output("%s -P" % lldb_executable, shell=True, stderr=fnull).strip()
/external/tpm2/generator/
Dgenerator.py62 components = subprocess.check_output(['tar', 'tf', tar_file_name],
66 subprocess.check_output(tar_extract_base + [tar_file_name, '-x', name],
70 subprocess.check_output(tar_extract_base + [tar_file_name, '-x', name],
/external/v8/build/experimental/
Dinstall-build-deps.py248 return pkg in subprocess.check_output(['apt-cache', 'pkgnames']).splitlines()
252 return subprocess.check_output(
293 output = subprocess.check_output(['apt-cache', 'depends', 'g++-multilib'])
/external/autotest/client/site_tests/platform_Quipper/
Dplatform_Quipper.py68 result = subprocess.check_output(perf_command)
78 result = subprocess.check_output(quipper_command,
/external/v8/build/config/linux/
Dpkg-config.py79 prefix = subprocess.check_output(["pkg-config", "--variable=prefix"] + args,
158 libdir = subprocess.check_output(cmd)
170 flag_string = subprocess.check_output(cmd)
/external/skia/platform_tools/android/skp_gen/
Dandroid_skp_capture.py81 def check_output(cmd): function
91 output = check_output(['adb', 'shell', cmd + '; echo $?']).strip()
129 check_output(cmd)
/external/v8/tools/testrunner/network/
Dnetwork_execution.py68 self.base_rev = subprocess.check_output(
71 self.base_svn_rev = subprocess.check_output(
77 self.patch = subprocess.check_output(
121 ldd = subprocess.check_output("ldd %s | grep libv8\\.so" % (path),
/external/v8/tools/gyp/test/mac/
Dgyptest-app.py26 output = subprocess.check_output(['file', file])
67 machine = subprocess.check_output(['sw_vers', '-buildVersion']).rstrip('\n')
/external/autotest/client/site_tests/hardware_PerfCounterVerification/src/
Dfind_loop_instructions.py33 out = subprocess.check_output(cmd)
48 return subprocess.check_output((
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/
Drun_pylint.py138 result = subprocess.check_output(['git', 'diff', '--name-only',
146 result = subprocess.check_output(['git', 'ls-files'])
/external/autotest/site_utils/lib/
Dinfra.py47 return subprocess.check_output(cmd, shell=True)
105 out = subprocess.check_output(['googlesh', '-s', '-uchromeos-test',
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dandroid_profiling_helper.py34 headers = subprocess.check_output(['readelf', '-h', elf_file])
39 return subprocess.check_output(['readelf', '-p', section, elf_file])
43 result = subprocess.check_output(
/external/v8/build/config/posix/
Dsysroot_ld_path.py18 result = subprocess.check_output([sys.argv[1], sys.argv[2]]).strip()
/external/v8/tools/testrunner/server/
Dwork_handler.py110 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
115 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
/external/skia/tools/
Dgit-sync-deps78 disable = subprocess.check_output(
95 toplevel = subprocess.check_output(
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
Ddesktop_browser_backend.py48 minidump_output = subprocess.check_output(minidump_cmd, stderr=DEVNULL)
354 report_output = subprocess.check_output([
434 symbols = subprocess.check_output(['/usr/bin/nm', self._executable])
462 output = subprocess.check_output([cdb, '-y', self._browser_directory,
491 return subprocess.check_output([stackwalk, minidump, symbols_path],
/external/v8/build/config/ios/
Dfind_signing_identity.py10 return subprocess.check_output([

1234