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() { }
145 RecoveryUI* ui;
ui.cpp 42 RecoveryUI::RecoveryUI()
58 void RecoveryUI::OnKeyDetected(int key_code) {
68 int RecoveryUI::InputCallback(int fd, uint32_t epevents, void* data) {
69 return reinterpret_cast<RecoveryUI*>(data)->OnInputEvent(fd, epevents);
82 void RecoveryUI::Init() {
85 ev_iterate_available_keys(std::bind(&RecoveryUI::OnKeyDetected, this, std::placeholders::_1));
90 int RecoveryUI::OnInputEvent(int fd, uint32_t epevents) {
138 void RecoveryUI::ProcessKey(int key_code, int updown) {
154 pthread_create(&thread, nullptr, &RecoveryUI::time_key_helper, info)
    [all...]

Completed in 52 milliseconds