Home
last modified time | relevance | path

Searched refs:Init (Results 1 – 20 of 20) sorted by relevance

/bootable/recovery/tests/unit/
Dscreen_ui_test.cpp311 FRIEND_TEST(DISABLED_ScreenRecoveryUITest, Init);
375 TEST_F(DISABLED_ScreenRecoveryUITest, Init) { in TEST_F() argument
378 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
393 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
407 ASSERT_TRUE(ui_->Init(kTestRtlLocale)); in TEST_F()
414 ASSERT_TRUE(ui_->Init(kTestRtlLocaleWithSuffix)); in TEST_F()
421 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
449 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
462 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
473 ASSERT_TRUE(ui_->Init(kTestLocale)); in TEST_F()
[all …]
/bootable/recovery/minui/
Dgraphics.h31 virtual GRSurface* Init() = 0;
Dgraphics_fbdev.h56 GRSurface* Init() override;
Dgraphics_drm.h59 GRSurface* Init() override;
Dgraphics_fbdev.cpp71 GRSurface* MinuiBackendFbdev::Init() { in Init() function in MinuiBackendFbdev
Dgraphics_drm.cpp333 GRSurface* MinuiBackendDrm::Init() { in Init() function in MinuiBackendDrm
Dgraphics.cpp434 gr_draw = minui_backend->Init(); in gr_init()
/bootable/recovery/recovery_ui/include/recovery_ui/
Dwear_ui.h29 bool Init(const std::string& locale) override;
Dui.h67 virtual bool Init(const std::string& locale);
Dscreen_ui.h200 bool Init(const std::string& locale) override;
/bootable/deprecated-ota/updater/
Dupdater_main.cpp107 if (!updater.Init(fd, package_name, is_retry)) { in main()
Dupdate_simulator_main.cpp156 if (!updater.Init(cmd_pipe.release(), package_name, false)) { in main()
Dupdater.cpp35 bool Updater::Init(int fd, const std::string_view package_filename, bool is_retry) { in Init() function in Updater
/bootable/deprecated-ota/updater/include/updater/
Dupdater.h42 bool Init(int fd, const std::string_view package_filename, bool is_retry);
/bootable/recovery/recovery_ui/
Dwear_ui.cpp81 bool WearRecoveryUI::Init(const std::string& locale) { in Init() function in WearRecoveryUI
82 auto result = ScreenRecoveryUI::Init(locale); in Init()
Dui.cpp161 bool RecoveryUI::Init(const std::string& /* locale */) { in Init() function in RecoveryUI
Dscreen_ui.cpp909 bool ScreenRecoveryUI::Init(const std::string& locale) { in Init() function in ScreenRecoveryUI
910 RecoveryUI::Init(locale); in Init()
/bootable/deprecated-ota/tests/unit/host/
Dupdate_simulator_test.cpp99 ASSERT_TRUE(updater.Init(cmd_pipe.release(), ota_package, false)); in RunSimulation()
/bootable/recovery/
Drecovery_main.cpp433 if (!device->GetUI()->Init(locale)) { in main()
/bootable/deprecated-ota/tests/unit/
Dupdater_test.cpp179 ASSERT_TRUE(updater_.Init(temp_pipe.release(), zip_file.path, false)); in RunBlockImageUpdate()