Lines Matching full:recovery
42 // The powerwash arguments passed to recovery. Arguments are separated by \n.
44 "recovery\n"
48 // Write a recovery command line |message| to the BCB. The arguments to recovery
55 // Setup a bootloader_message with just the command and recovery fields set.
58 strncpy(boot.command, "boot-recovery", sizeof(boot.command) - 1);
59 memcpy(boot.recovery,
61 std::min(message.size(), sizeof(boot.recovery) - 1));
72 // including the recovery message.
74 offsetof(bootloader_message, recovery) + sizeof(boot.recovery);
76 PLOG(ERROR) << "Writing recovery command to misc";