/external/chromium_org/build/android/buildbot/ |
bb_host_steps.py | 22 # Short hand for RunCmd which is used extensively in this file. 23 RunCmd = bb_utils.RunCmd 32 RunCmd([SrcPath('android_webview', 'tools', 'webview_licenses.py'), 'scan'], 37 RunCmd([SrcPath('build', 'landmines.py')]) 47 RunCmd(['rm', '-rf', build_path]) 50 RunCmd(['gclient', 'runhooks'], halt_on_failure=True) 63 RunCmd(cmd + ['--build-args=%s' % build_target], 69 RunCmd(cmd + ['--build-args=%s' % compile_target], 76 RunCmd([ [all...] |
bb_device_steps.py | 83 RunCmd = bb_utils.RunCmd 151 RunCmd(cmd) 157 RunCmd(['chrome/test/chromedriver/run_buildbot_steps.py', 182 RunCmd(['build/android/adb_install_apk.py'] + args, halt_on_failure=True) 225 RunCmd(['build/android/test_runner.py', 'instrumentation'] + args, 232 RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py'), 272 exit_code = RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py')] 298 # If exit_code != 0, RunCmd() will have already printed an error. 315 RunCmd([os.path.join(SLAVE_SCRIPTS_DIR, 'chromium' [all...] |
bb_utils.py | 55 def RunCmd(command, flunk_on_failure=True, halt_on_failure=False,
|
/external/chromium_org/build/android/ |
bb_run_sharded_steps.py | 32 return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf', 37 return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf', '-v',
|
install_emulator_deps.py | 103 return not cmd_helper.RunCmd(['kvm-ok']) 114 cmd_helper.RunCmd(['curl', '-o', '/tmp/sdk.zip', sdk_url]) 116 rc = cmd_helper.RunCmd(['unzip', '-o', '/tmp/sdk.zip', '-d', '/tmp/']) 130 rc = cmd_helper.RunCmd(['sudo', 'apt-get', 'install', 'kvm']) 136 rc = cmd_helper.RunCmd(['sudo', 'modprobe', 'kvm-intel']) 141 rc = cmd_helper.RunCmd(['kvm-ok']) 161 cmd_helper.RunCmd(['curl', '-o', temp_file, X86_IMG_URLS[api_level]]) 162 rc = cmd_helper.RunCmd(['unzip', '-o', temp_file, '-d', '/tmp/'])
|
generate_emma_html.py | 77 exit_code = cmd_helper.RunCmd(
|
/development/scripts/ |
add-accounts | 34 def RunCmd(args): 46 return RunCmd(args) 51 return RunCmd(args) 56 result = RunCmd(args)
|
add-accounts-sdk | 34 def RunCmd(args): 45 return RunCmd(args) 49 return RunCmd(args) 53 result = RunCmd(args)
|
/external/chromium_org/build/android/pylib/gtest/ |
test_package_exe.py | 96 cmd_helper.RunCmd(['chmod', '+x', sh_script_file.name]) 145 cmd_helper.RunCmd([strip, self.suite_path, '-o', target_name])
|
setup.py | 121 assert not cmd_helper.RunCmd(isolate_cmd)
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
cros_interface.py | 27 def RunCmd(args, cwd=None, quiet=False): 71 RunCmd(['ssh'], quiet=True) 72 RunCmd(['scp'], quiet=True)
|
/external/chromium_org/build/android/pylib/utils/ |
emulator.py | 99 cmd_helper.RunCmd(['adb', '-s', emu_name, 'emu', 'kill']) 119 cmd_helper.RunCmd(cmd) 310 cmd_helper.RunCmd(avd_command)
|
/external/chromium_org/build/android/pylib/ |
cmd_helper.py | 30 def RunCmd(args, cwd=None):
|
android_commands.py | 515 ret = cmd_helper.RunCmd(adb_cmd) 518 ret = cmd_helper.RunCmd(['pgrep', 'adb']) 529 ret = cmd_helper.RunCmd(adb_cmd) 532 ret = cmd_helper.RunCmd(['pgrep', 'adb']) [all...] |
/external/chromium_org/native_client_sdk/src/tools/tests/ |
oshelpers_test.py | 34 def RunCmd(cmd, args, cwd, env=None): 73 return RunCmd('zip', list(args), cwd=self.tempdir) 219 return RunCmd('which', list(args), cwd=self.tempdir, env=env)
|
/external/chromium_org/build/android/pylib/device/ |
adb_wrapper.py | 84 def RunCmd(): 98 return timeout_retry.Run(RunCmd, timeout, retries)
|