Lines Matching full:adb
29 """Controls a device over adb to run ITS scripts.
36 forwarded over adb is the transport mechanism used.
45 # The adb program is used for communication with the device. Need to handle
47 # to adb, which causes it to fail if there is more than one device.
48 ADB = "adb -d"
65 _run('%s shell am force-stop --user 0 %s' % (self.ADB, self.PACKAGE))
67 '-a %s') % (self.ADB, self.INTENT_START))
68 _run('%s forward tcp:%d tcp:%d' % (self.ADB,self.PORT,self.PORT))
276 state. Will disconnect any other adb sessions, so this function is not
286 _run("%s reboot" % (ItsSession.ADB));
287 _run("%s wait-for-device" % (ItsSession.ADB))