Home | History | Annotate | Download | only in component

Lines Matching refs:boot_verify

80   bootloader_message boot_verify;
81 ASSERT_TRUE(read_bootloader_message(&boot_verify, &err)) << "Failed to read BCB: " << err;
84 std::string(reinterpret_cast<const char*>(&boot_verify), sizeof(boot_verify)));
195 bootloader_message boot_verify;
196 ASSERT_TRUE(read_bootloader_message(&boot_verify, &err)) << "Failed to read BCB: " << err;
199 ASSERT_EQ("boot-recovery", std::string(boot_verify.command));
201 ASSERT_EQ(expected, std::string(boot_verify.recovery));
204 ASSERT_EQ(std::string(boot.status), std::string(boot_verify.status));
205 ASSERT_EQ(std::string(boot.stage), std::string(boot_verify.stage));
206 ASSERT_EQ(std::string(boot.reserved), std::string(boot_verify.reserved));