Home | History | Annotate | Download | only in targetprep

Lines Matching refs:FASTBOOT

46  * A class that relies on fastboot to flash an image on physical Android hardware.
144 // get system build id and build flavor before booting into fastboot
209 CLog.d("fastboot flash %s %s", partition, imgFile.getAbsolutePath());
215 * Wipe the specified partition with `fastboot erase <name>`
223 CLog.d("fastboot %s %s", wipeMethod, partition);
639 * @throws TargetSetupError if fastboot command fails
651 // only transfer last fastboot command status over to system flash status after having
669 * @throws TargetSetupError if fastboot command fails or version could not be determined
708 if (device.getDeviceState().equals(TestDeviceState.FASTBOOT)) {
731 * Helper method to execute fastboot command.
734 * @param cmdArgs the arguments to provide to fastboot
736 * Some fastboot commands are weird in that they dump output to stderr on success case
739 * @throws TargetSetupError if fastboot command fails
743 CLog.v("Executing short fastboot command %s", java.util.Arrays.toString(cmdArgs));
749 * Helper method to execute a long-running fastboot command.
751 * Note: Most fastboot commands normally execute within the timeout allowed by
753 * flashing devices at once, fastboot commands can take much longer than normal.
756 * @param cmdArgs the arguments to provide to fastboot
758 * Some fastboot
761 * @throws TargetSetupError if fastboot command fails
770 * Interpret the result of a fastboot command
780 CLog.v("fastboot stdout: " + result.getStdout());
781 CLog.v("fastboot stderr: " + result.getStderr());
789 "fastboot command %s failed in device %s. stdout: %s, stderr: %s", cmdArgs[0],