Home | History | Annotate | Download | only in at-factory-tool

Lines Matching refs:fastboot

16 """Fastboot Interface Implementation using subprocess library."""
38 """An abstracted fastboot device object.
41 serial_number: The serial number of the fastboot device.
45 fastboot_command = os.path.join(current_path, 'fastboot.exe')
50 """List all fastboot devices.
53 A list of serial numbers for all the fastboot devices.
67 """Initiate the fastboot device object.
70 serial_number: The serial number of the fastboot device.
73 # Lock to make sure only one fastboot command can be issued to one device
78 """Reboot the device into fastboot mode.
128 The output for the fastboot command required.
146 """Pulls a file from the fastboot device to the local file system.
152 The output for the fastboot command required.
170 """Push a file from the file system to the fastboot device.
174 that would be pushed to fastboot device.
176 The output for the fastboot command required.
205 # Fastboot getvar command's output would be in stderr instead of stdout.
237 """Disconnect from the fastboot device."""