Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 10 of 10) sorted by relevance

/bootable/recovery/tests/component/
Dbootloader_message_test.cpp60 strlcpy(boot.stage, "stage bytes", sizeof(boot.stage)); in TEST()
72 ASSERT_EQ("stage bytes", std::string(boot.stage)); in TEST()
90 ASSERT_EQ(std::string(sizeof(boot.stage), '\0'), std::string(boot.stage, sizeof(boot.stage))); in TEST()
117 ASSERT_EQ(std::string(sizeof(boot.stage), '\0'), std::string(boot.stage, sizeof(boot.stage))); in TEST()
Dupdater_test.cpp507 strlcpy(boot.stage, "2/3", sizeof(boot.stage)); in TEST_F()
531 strlcpy(boot.stage, "2/3", sizeof(boot.stage)); in TEST_F()
544 ASSERT_STREQ("1/3", boot_verify.stage); in TEST_F()
/bootable/recovery/
Dcommon.h33 extern std::string stage;
D.clang-format3 # Alternatively, one can stage and format a change with `git clang-format` directly.
Drecovery.cpp78 std::string stage; variable
823 printf("stage is [%s]\n", stage.c_str()); in start_recovery()
831 if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) { in start_recovery()
Drecovery_main.cpp98 stage = std::string(boot.stage); in get_args()
/bootable/recovery/bootloader_message/include/bootloader_message/
Dbootloader_message.h74 char stage[32]; member
/bootable/recovery/updater/
Dinstall.cpp820 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage)); in SetStageFn()
849 return StringValue(boot.stage); in GetStageFn()
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h393 int stage, max_stage; variable
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp333 stage(-1), in ScreenRecoveryUI()
428 const auto& stage_surface = (i < stage) ? stage_marker_fill_ : stage_marker_empty_; in draw_background_locked()
1011 stage = current; in SetStage()