Lines Matching full: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)
163 """Enable adb root on device."""
168 # device will disappear from adb, wait for it to come back
173 logger.Log("Unrecognized output from adb root: %s" % output)
223 response to adb instrument command
273 """Returns a string of adb command that will be executed."""
280 return "adb %s shell %s" % (self._target_arg, cmd)
383 Assumes that a only successful execution of "adb shell <command>" contains
387 command: adb shell command to execute
453 """Perform a adb sync.