Home
last modified time | relevance | path

Searched refs:KEYPRESS (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/boot/efi/
Dboot.c193 case KEYPRESS(0, SCAN_ESC, 0): in line_edit()
194 case KEYPRESS(EFI_CONTROL_PRESSED, 0, 'c'): in line_edit()
195 case KEYPRESS(EFI_CONTROL_PRESSED, 0, 'g'): in line_edit()
196 case KEYPRESS(EFI_CONTROL_PRESSED, 0, CHAR_CTRL('c')): in line_edit()
197 case KEYPRESS(EFI_CONTROL_PRESSED, 0, CHAR_CTRL('g')): in line_edit()
200 case KEYPRESS(0, SCAN_HOME, 0): in line_edit()
201 case KEYPRESS(EFI_CONTROL_PRESSED, 0, 'a'): in line_edit()
202 case KEYPRESS(EFI_CONTROL_PRESSED, 0, CHAR_CTRL('a')): in line_edit()
208 case KEYPRESS(0, SCAN_END, 0): in line_edit()
209 case KEYPRESS(EFI_CONTROL_PRESSED, 0, 'e'): in line_edit()
[all …]
Dconsole.c146 *key = KEYPRESS(shift, keydata.Key.ScanCode, keydata.Key.UnicodeChar); in console_key_read()
155 *key = KEYPRESS(0, k.ScanCode, k.UnicodeChar); in console_key_read()
Dconsole.h13 #define KEYPRESS(keys, scan, uni) ((((UINT64)keys) << 32) | (((UINT64)scan) << 16) | (uni)) macro