HomeSort by relevance Sort by last modified time
    Searched defs:RecoveryUI (Results 1 - 2 of 2) sorted by null

  /bootable/recovery/
ui.h 25 class RecoveryUI {
27 RecoveryUI();
29 virtual ~RecoveryUI() { }
148 RecoveryUI* ui;
ui.cpp 43 RecoveryUI::RecoveryUI()
59 void RecoveryUI::OnKeyDetected(int key_code) {
69 int RecoveryUI::InputCallback(int fd, uint32_t epevents, void* data) {
70 return reinterpret_cast<RecoveryUI*>(data)->OnInputEvent(fd, epevents);
83 void RecoveryUI::Init() {
86 ev_iterate_available_keys(std::bind(&RecoveryUI::OnKeyDetected, this, std::placeholders::_1));
91 int RecoveryUI::OnInputEvent(int fd, uint32_t epevents) {
139 void RecoveryUI::ProcessKey(int key_code, int updown) {
155 pthread_create(&thread, nullptr, &RecoveryUI::time_key_helper, info)
    [all...]

Completed in 62 milliseconds