Home | History | Annotate | Download | only in testrunner

Lines Matching refs:adb

18 """Provides an interface to communicate with the device via the adb command.
20 Assumes adb binary is currently on system path.
35 """Helper class for communicating with Android device via adb."""
37 # argument to pass to adb, to direct command to specific device
55 """Send a command via adb.
58 command_string: adb command to run
69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
75 """Send a adb shell command.
78 cmd: adb shell command to run
94 """Dumps adb bugreport to the file specified by the path.
97 path: Path of the file where adb bugreport is dumped to.
131 logger.Log("ADB Pull Failed: Source file %s does not exist." % src)
152 """Enable adb root on device."""
157 # device will disappear from adb, wait for it to come back
162 logger.Log("Unrecognized output from adb root: %s" % output)
212 response to adb instrument command
262 """Returns a string of adb command that will be executed."""
269 return "adb %s shell %s" % (self._target_arg, cmd)
385 Assumes that a only successful execution of "adb shell <command>" contains
389 command: adb shell command to execute
455 """Perform a adb sync.