Searched refs:RecoveryUI (Results 1 – 11 of 11) sorted by relevance
/bootable/recovery/ |
D | ui.cpp | 42 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 …]
|
D | device.h | 24 Device(RecoveryUI* ui) : ui_(ui) { } in Device() 31 virtual RecoveryUI* GetUI() { return ui_; } in GetUI() 106 RecoveryUI* ui_;
|
D | adb_install.h | 20 class RecoveryUI; variable 22 int apply_from_adb(RecoveryUI* h, bool* wipe_cache, const char* install_file);
|
D | ui.h | 25 class RecoveryUI { 27 RecoveryUI(); 29 virtual ~RecoveryUI() { } in ~RecoveryUI() 145 RecoveryUI* ui;
|
D | install.cpp | 38 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()
|
D | adb_install.cpp | 36 static RecoveryUI* ui = NULL; 74 apply_from_adb(RecoveryUI* ui_, bool* wipe_cache, const char* install_file) { in apply_from_adb()
|
D | recovery.cpp | 85 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 …]
|
D | verifier_test.cpp | 121 RecoveryUI* ui = NULL; 125 class FakeUI : public RecoveryUI {
|
D | screen_ui.h | 28 class ScreenRecoveryUI : public RecoveryUI {
|
D | verifier.cpp | 34 extern RecoveryUI* ui;
|
D | screen_ui.cpp | 424 RecoveryUI::Init(); in Init()
|