Home | History | Annotate | Download | only in utils

Lines Matching defs:adb_command

188         output = adb_command(self.device,
204 output = adb_command(self.device, command, timeout=self.timeout, adb_server=self.adb_server)
233 return adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
242 output = adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
245 adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
248 return adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
296 adb_command(None, 'start-server', adb_server=adb_server)
304 output = adb_command(None, "devices", adb_server=adb_server).splitlines() # pylint: disable=E1103
437 output = adb_command(None, 'devices',adb_server=adb_server)
454 def adb_command(device, command, timeout=None,adb_server=None):