Home | History | Annotate | Download | only in controllers

Lines Matching refs:serial

94         if ad.serial not in connected_ads:
96 " but is not attached.") % ad.serial)
144 A list of android device serial numbers.
194 Each config should have the required key-value pair "serial".
206 serial = c.pop(keys.ConfigKeys.IKEY_SERIAL)
219 ad = AndroidDevice(serial, product_type)
295 serials = [ad.serial for ad in filtered]
328 serial: A string that's the serial number of the Android device.
336 [AndroidDevice|<serial>]
364 serial="",
367 self.serial = serial
372 {"serial": self.serial})
374 self.log_path = os.path.join(base_log_path, "AndroidDevice%s" % serial)
378 self.adb = adb.AdbProxy(serial)
379 self.fastboot = fastboot.FastbootProxy(serial)
380 self.customflasher = customflasher.CustomFlasherProxy(serial)
422 return self.serial in list_fastboot_devices()
695 (k, self.serial))
718 "another one.") % self.serial)
719 f_name = "adblog_%s_%s.txt" % (self.model, self.serial)
726 cmd = "adb -s %s logcat -v threadtime %s >> %s" % (self.serial,
738 % self.serial)
754 base_name = ",%s,%s.txt" % (begin_time, self.serial)
758 self.log.info("Taking bugreport for %s on %s", test_name, self.serial)
1061 "HAL agent is already running on %s." % self.serial)
1102 s=self.serial,
1357 ed_key = self.serial + str(droid.uid)
1426 ed_key = self.serial + str(session_id)
1457 We are adding the prefix "[AndroidDevice|<serial>]" to all log lines.
1464 msg = "[AndroidDevice|%s] %s" % (self.extra["serial"], msg)