Home | History | Annotate | Download | only in tools

Lines Matching refs:Devices

6 """A script to open the unlock bootloader on-screen prompt on all devices."""
29 # Reboot all devices into bootloader if they aren't there already.
31 for d in adb_wrapper.AdbWrapper.Devices(desired_state=None):
46 # Wait for the rebooted devices to show up in fastboot.
48 logging.info('Waiting for devices to reboot...')
53 fastbooted_devices = set([str(d) for d in fastboot.Fastboot.Devices()])
55 logging.info('All devices in fastboot.')
135 reboot_into_bootloader(args.devices)
136 devices = [
137 d for d in fastboot.Fastboot.Devices() if not args.devices or
138 str(d) in args.devices]
139 parallel_devices = parallelizer.Parallelizer(devices)