HomeSort by relevance Sort by last modified time
    Searched full:cmd_helper (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/build/android/pylib/utils/
repo_utils.py 5 from pylib import cmd_helper namespace
15 output = cmd_helper.GetCmdOutput(command_line, cwd=in_directory)
apk_helper.py 10 from pylib import cmd_helper namespace
23 aapt_output = cmd_helper.GetCmdOutput(aapt_cmd).split('\n')
34 aapt_output = cmd_helper.GetCmdOutput(aapt_cmd).split('\n')
flakiness_dashboard_results_uploader.py 16 from pylib import cmd_helper namespace
77 output = cmd_helper.GetCmdOutput(['svn', 'info', '--xml'], cwd=in_directory)
emulator.py 19 from pylib import cmd_helper namespace
96 cmd_helper.RunCmd(['adb', '-s', emu_name, 'emu', 'kill'])
116 cmd_helper.RunCmd(cmd)
326 cmd_helper.RunCmd(avd_command)
findbugs.py 12 from pylib import cmd_helper namespace
78 out = cmd_helper.GetCmdOutput(shlex.split(cmd))
  /external/chromium_org/build/android/
bb_run_sharded_steps.py 15 from pylib import cmd_helper namespace
31 return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf',
36 return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf', '-v',
install_emulator_deps.py 20 from pylib import cmd_helper namespace
70 exit_code, stdout = cmd_helper.GetCmdStatusAndOutput(
119 return not cmd_helper.RunCmd(['sudo', 'kvm-ok'])
130 cmd_helper.RunCmd(['curl', '-o', '/tmp/sdk.zip', sdk_url])
132 rc = cmd_helper.RunCmd(['unzip', '-o', '/tmp/sdk.zip', '-d', '/tmp/'])
146 rc = cmd_helper.RunCmd(['sudo', 'apt-get', 'install', 'kvm'])
152 rc = cmd_helper.RunCmd(['sudo', 'modprobe', 'kvm-intel'])
176 cmd_helper.RunCmd(['curl', '-o', temp_file, X86_IMG_URLS[api_level]])
177 rc = cmd_helper.RunCmd(['unzip', '-o', temp_file, '-d', '/tmp/'])
201 exit_code, stdout = cmd_helper.GetCmdStatusAndOutput
    [all...]
avd.py 19 from pylib import cmd_helper namespace
72 avds_output = cmd_helper.GetCmdOutput([android, 'list', 'avd'])
generate_emma_html.py 15 from pylib import cmd_helper namespace
76 exit_code = cmd_helper.RunCmd(
  /external/chromium_org/build/android/pylib/junit/
test_runner.py 7 from pylib import cmd_helper namespace
36 return cmd_helper.RunCmd(command)
  /external/chromium_org/tools/profile_chrome/
systrace_controller.py 11 from pylib import cmd_helper namespace
66 return cmd_helper.GetCmdOutput(cmd)
  /external/chromium_org/build/android/pylib/
screenshot.py 9 from pylib import cmd_helper namespace
54 self._recorder = cmd_helper.Popen(
forwarder.py 12 from pylib import cmd_helper namespace
99 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
231 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
308 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
311 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
ports.py 16 from pylib import cmd_helper namespace
99 if re_port.search(cmd_helper.GetCmdOutput(['lsof', '-nPi:%d' % host_port])):
android_commands.py 25 import cmd_helper namespace
114 avds = re_avd.findall(cmd_helper.GetCmdOutput(['android', 'list', 'avd']))
157 adb_devices_output = cmd_helper.GetCmdOutput([constants.GetAdbPath(),
583 ret = cmd_helper.RunCmd(adb_cmd)
586 ret, _ = cmd_helper.GetCmdStatusAndOutput(['pgrep', 'adb'])
597 ret, _ = cmd_helper.GetCmdStatusAndOutput(adb_cmd)
600 ret, _ = cmd_helper.GetCmdStatusAndOutput(['pgrep', 'adb'])
    [all...]
  /external/chromium_org/gpu/gles2_conform_support/egl/
display.cc 181 scoped_ptr<gpu::gles2::GLES2CmdHelper> cmd_helper(
183 if (!cmd_helper->Initialize(kCommandBufferSize))
187 cmd_helper.get()));
191 gles2_cmd_helper_.reset(cmd_helper.release());
  /external/chromium_org/build/android/pylib/gtest/
test_package_exe.py 12 from pylib import cmd_helper namespace
107 cmd_helper.RunCmd(['chmod', '+x', sh_script_file.name])
setup.py 15 from pylib import cmd_helper namespace
126 assert not cmd_helper.RunCmd(isolate_cmd)
  /external/chromium_org/build/android/pylib/perf/
test_runner.py 59 from pylib import cmd_helper namespace
241 exit_code, output = cmd_helper.GetCmdStatusAndOutputWithTimeout(
243 except cmd_helper.TimeoutError as e:
  /external/chromium_org/build/android/buildbot/
bb_utils.py 27 # TODO: Figure out how to merge this with pylib.cmd_helper.OutDirectory().
bb_device_status_check.py 32 from pylib.cmd_helper import GetCmdOutput
  /external/chromium_org/build/android/pylib/instrumentation/
test_jar.py 15 from pylib import cmd_helper namespace
78 cmd_helper.RunCmd(['java', '-jar',
  /external/chromium_org/build/android/pylib/device/
adb_wrapper.py 14 from pylib import cmd_helper namespace
52 exit_code, output = cmd_helper.GetCmdStatusAndOutput(cmd)

Completed in 411 milliseconds