Home | History | Annotate | Download | only in component

Lines Matching defs:options

48   // Write the options to BCB.
49 std::vector<std::string> options = { "option1", "option2" };
58 ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
62 std::string expected = "recovery\n" + android::base::Join(options, "\n") + "\n";
73 std::vector<std::string> options;
77 ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
92 std::vector<std::string> options;
94 options.push_back("option: " + std::to_string(i));
99 ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
102 std::string expected = "recovery\n" + android::base::Join(options, "\n") + "\n";