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

Lines Matching full:fastboot

17 """Fastboot Interface Implementation using sh library."""
37 """An abstracted fastboot device object.
40 serial_number: The serial number of the fastboot device.
43 fastboot_command = sh.Command(os.path.join(current_path, 'fastboot'))
48 """List all fastboot devices.
51 A list of serial numbers for all the fastboot devices.
62 """Initiate the fastboot device object.
65 serial_number: The serial number of the fastboot device.
68 # Lock to make sure only one fastboot command can be issued to one device
73 """Reboot the device into fastboot mode.
119 The output for the fastboot command required.
134 """Pulls a file from the fastboot device to the local file system.
140 The output for the fastboot command required.
155 """Push a file from the file system to the fastboot device.
159 that would be pushed to fastboot device.
161 The output for the fastboot command required.
187 # Fastboot getvar command's output would be in stderr instead of stdout.
210 """Disconnect from the fastboot device."""