Home
last modified time | relevance | path

Searched refs:RecoveryUI (Results 1 – 11 of 11) sorted by relevance

/bootable/recovery/
Dui.cpp42 RecoveryUI::RecoveryUI() in RecoveryUI() function in RecoveryUI
58 void RecoveryUI::OnKeyDetected(int key_code) { in OnKeyDetected()
68 int RecoveryUI::InputCallback(int fd, uint32_t epevents, void* data) { in InputCallback()
69 return reinterpret_cast<RecoveryUI*>(data)->OnInputEvent(fd, epevents); in InputCallback()
82 void RecoveryUI::Init() { in Init()
85 ev_iterate_available_keys(std::bind(&RecoveryUI::OnKeyDetected, this, std::placeholders::_1)); in Init()
90 int RecoveryUI::OnInputEvent(int fd, uint32_t epevents) { in OnInputEvent()
138 void RecoveryUI::ProcessKey(int key_code, int updown) { in ProcessKey()
154 pthread_create(&thread, nullptr, &RecoveryUI::time_key_helper, info); in ProcessKey()
168 case RecoveryUI::IGNORE: in ProcessKey()
[all …]
Ddevice.h24 Device(RecoveryUI* ui) : ui_(ui) { } in Device()
31 virtual RecoveryUI* GetUI() { return ui_; } in GetUI()
106 RecoveryUI* ui_;
Dadb_install.h20 class RecoveryUI; variable
22 int apply_from_adb(RecoveryUI* h, bool* wipe_cache, const char* install_file);
Dui.h25 class RecoveryUI {
27 RecoveryUI();
29 virtual ~RecoveryUI() { } in ~RecoveryUI()
145 RecoveryUI* ui;
Dinstall.cpp38 extern RecoveryUI* ui;
175 ui->SetBackground(RecoveryUI::NONE); in try_update_binary()
200 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); in really_install_package()
203 ui->SetProgressType(RecoveryUI::DETERMINATE); in really_install_package()
Dadb_install.cpp36 static RecoveryUI* ui = NULL;
74 apply_from_adb(RecoveryUI* ui_, bool* wipe_cache, const char* install_file) { in apply_from_adb()
Drecovery.cpp85 RecoveryUI* ui = NULL;
423 ui->SetBackground(RecoveryUI::ERASING); in erase_volume()
424 ui->SetProgressType(RecoveryUI::INDETERMINATE); in erase_volume()
786 ui->SetBackground(RecoveryUI::NO_COMMAND); in prompt_and_wait()
791 ui->SetBackground(RecoveryUI::ERROR); in prompt_and_wait()
794 ui->SetProgressType(RecoveryUI::EMPTY); in prompt_and_wait()
840 ui->SetBackground(RecoveryUI::ERROR); in prompt_and_wait()
888 static RecoveryUI* gCurrentUI = NULL;
986 ui->SetBackground(RecoveryUI::NONE); in main()
1075 ui->SetBackground(RecoveryUI::NO_COMMAND); in main()
[all …]
Dverifier_test.cpp121 RecoveryUI* ui = NULL;
125 class FakeUI : public RecoveryUI {
Dscreen_ui.h28 class ScreenRecoveryUI : public RecoveryUI {
Dverifier.cpp34 extern RecoveryUI* ui;
Dscreen_ui.cpp424 RecoveryUI::Init(); in Init()