/src/sys/external/bsd/gnu-efi/dist/lib/ |
pause.c | 14 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 15 Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
|
console.c | 44 ST->ConIn, 54 IN SIMPLE_INPUT_INTERFACE *ConIn, 71 WaitForSingleEvent (ConIn->WaitForKey, 0); 73 Status = uefi_call_wrapper(ConIn->ReadKeyStroke, 2, ConIn, &Key);
|
event.c | 153 if (!EFI_ERROR(uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, Key))) {
|
/src/sys/stand/efiboot/ |
console.c | 44 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key); 46 if (ST->ConIn->WaitForKey != NULL) 47 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 48 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key); 70 if (ST->ConIn->WaitForKey == NULL) { 73 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key); 80 status = uefi_call_wrapper(BS->CheckEvent, 1, ST->ConIn->WaitForKey) [all...] |
/src/sys/external/bsd/gnu-efi/dist/apps/ |
t7.c | 17 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 21 efi_status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &efi_input_key);
|
t5.c | 12 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
|
t4.c | 14 uefi_call_wrapper(systab->BootServices->WaitForEvent, 3, 1, &systab->ConIn->WaitForKey, &index);
|
/src/sys/arch/i386/stand/efiboot/ |
panic.c | 55 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
|
eficons.c | 294 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, 297 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 298 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, 299 ST->ConIn, &key); 326 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, 341 status = WaitForSingleEvent(ST->ConIn->WaitForKey, timeout);
|
/src/sys/arch/ia64/stand/efi/libefi/ |
efi_console.c | 40 static SIMPLE_INPUT_INTERFACE *conin; variable in typeref:typename:SIMPLE_INPUT_INTERFACE * 46 conin = ST->ConIn; 79 status = conin->ReadKeyStroke(conin, &key); 81 BS->WaitForEvent(1, &conin->WaitForKey, &junk); 82 status = conin->ReadKeyStroke(conin, &key); 91 return (BS->CheckEvent(conin->WaitForKey) == EFI_SUCCESS);
|
/src/sys/external/bsd/acpica/dist/include/platform/ |
acefiex.h | 1032 ACPI_SIMPLE_INPUT_INTERFACE *ConIn; 1119 struct _ACPI_SIMPLE_INPUT_INTERFACE ConIn;
|
/src/sys/external/bsd/gnu-efi/dist/inc/ |
efiapi.h | 970 SIMPLE_INPUT_INTERFACE *ConIn;
|
efilib.h | 182 #define VarConsoleInp L"ConIn" 522 IN SIMPLE_INPUT_INTERFACE *ConIn,
|