HomeSort by relevance Sort by last modified time
    Searched refs:adb_cmd (Results 1 - 7 of 7) sorted by null

  /build/tools/
adbs 29 adb_cmd = "adb " + ' '.join(sys.argv[1:]) variable
35 stream = os.popen(adb_cmd)
  /external/chromium_org/build/android/
adb_logcat_monitor.py 42 def StartLogcatIfNecessary(device_id, adb_cmd, base_dir):
60 process = subprocess.Popen([adb_cmd, '-s', device_id,
67 def GetAttachedDevices(adb_cmd):
74 adb_cmd: binary to run adb
81 out, err = subprocess.Popen([adb_cmd, 'devices'],
97 def main(base_dir, adb_cmd='adb'):
127 for device_id in GetAttachedDevices(adb_cmd):
129 subprocess.call([adb_cmd, '-s', device_id, 'logcat', '-c'])
134 StartLogcatIfNecessary(device, adb_cmd, base_dir)
  /external/chromium_org/build/android/pylib/utils/
emulator.py 398 adb_cmd = "adb -s %s %s" % (self.device_serial, 'wait-for-device')
401 run_command.RunCommand(adb_cmd,
409 adb_cmd = "adb -s %s %s" % (self.device_serial, 'kill-server')
410 run_command.RunCommand(adb_cmd)
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
70 logger.SilentLog("about to run %s" % adb_cmd)
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
  /development/testrunner/
adb_interface.py 69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
70 logger.SilentLog("about to run %s" % adb_cmd)
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
  /development/testrunner/test_defs/
instrumentation_test.py 137 adb_cmd = adb.PreviewInstrumentationCommand(
142 logger.Log(adb_cmd)
  /external/chromium_org/build/android/pylib/
android_commands.py 582 adb_cmd = [constants.GetAdbPath(), 'kill-server']
583 ret = cmd_helper.RunCmd(adb_cmd)
596 adb_cmd = ['taskset', '-c', '0', constants.GetAdbPath(), 'start-server']
597 ret, _ = cmd_helper.GetCmdStatusAndOutput(adb_cmd)
    [all...]

Completed in 340 milliseconds