HomeSort by relevance Sort by last modified time
    Searched refs:key_pressed (Results 1 - 6 of 6) sorted by null

  /bootable/recovery/
recovery_ui.h 30 // *key_pressed is an array of KEY_MAX+1 bytes indicating which other
33 extern int device_toggle_display(volatile char* key_pressed, int key_code);
36 // *key_pressed is an array of KEY_MAX+1 bytes indicating which other
39 extern int device_reboot_now(volatile char* key_pressed, int key_code);
default_recovery_ui.c 40 int device_toggle_display(volatile char* key_pressed, int key_code) {
44 int device_reboot_now(volatile char* key_pressed, int key_code) {
ui.c 97 static volatile char key_pressed[KEY_MAX + 1]; variable
343 // key-up), so don't record them in the key_pressed
345 key_pressed[ev.code] = ev.value;
354 if (ev.value > 0 && device_toggle_display(key_pressed, ev.code)) {
362 if (ev.value > 0 && device_reboot_now(key_pressed, ev.code)) {
657 return key_pressed[key];
  /device/samsung/tuna/recovery/
recovery_ui.c 71 int device_toggle_display(volatile char* key_pressed, int key_code) {
73 return key_pressed[KEY_POWER] && key_code == KEY_VOLUMEUP;
76 int device_reboot_now(volatile char* key_pressed, int key_code) {
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_biosevents.c 78 unsigned long key_pressed; local
79 key_pressed=Bconin(_CON);
80 bios_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF;
SDL_gemdosevents.c 84 unsigned long key_pressed; local
85 key_pressed=Cnecin();
86 gemdos_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF;

Completed in 584 milliseconds