Home | History | Annotate | Download | only in controllers

Lines Matching refs:serial

28 # (N and above add the serial to the error msg).
68 >> adb = AdbProxy(<serial>)
75 def __init__(self, serial="", ssh_connection=None):
79 serial: str serial number of Android device from `adb devices`
83 self.serial = serial
86 if serial:
87 adb_cmd.append("-s %s" % serial)
96 remote_adb_cmd = "%s/adb %s root" % (temp_dir, "-s %s" % serial
97 if serial else "")