Searched refs:WaitForKey (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/
H A DPs2Keyboard.c271 // Setup the WaitForKey event
278 &((ConsoleIn->ConIn).WaitForKey)
389 if ((ConsoleIn != NULL) && (ConsoleIn->ConIn.WaitForKey != NULL)) {
390 gBS->CloseEvent (ConsoleIn->ConIn.WaitForKey);
545 if ((ConsoleIn->ConIn).WaitForKey != NULL) {
546 gBS->CloseEvent ((ConsoleIn->ConIn).WaitForKey);
547 (ConsoleIn->ConIn).WaitForKey = NULL;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DSimpleTextIn.h99 Reads the next keystroke from the input device. The WaitForKey Event can
129 EFI_EVENT WaitForKey; member in struct:_EFI_SIMPLE_TEXT_INPUT_PROTOCOL
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DSimpleTextIn.h103 Reads the next keystroke from the input device. The WaitForKey Event can
133 EFI_EVENT WaitForKey; member in struct:_EFI_SIMPLE_TEXT_INPUT_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DConsoleWrappers.c34 Event notification function for EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey event
145 &ProtocolToReturn->SimpleTextIn.WaitForKey
188 Status = gBS->CloseEvent(((SHELL_EFI_SIMPLE_TEXT_INPUT_PROTOCOL *)SimpleTextIn)->SimpleTextIn.WaitForKey);
H A DConsoleLogger.c832 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
H A DFileHandleWrappers.c416 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbKbDxe/
H A DEfiKey.c296 &(UsbKeyboardDevice->SimpleInput.WaitForKey)
411 if (UsbKeyboardDevice->SimpleInput.WaitForKey != NULL) {
412 gBS->CloseEvent (UsbKeyboardDevice->SimpleInput.WaitForKey);
536 gBS->CloseEvent (UsbKeyboardDevice->SimpleInput.WaitForKey);
715 and EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey.
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/
H A Defi_console.c272 /* Check to see if the WaitForKey event has fired */
273 if ( ( efirc = bs->CheckEvent ( conin->WaitForKey ) ) == 0 )
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DConsole.c460 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminal.c771 &TerminalDevice->SimpleInput.WaitForKey
1189 if (TerminalDevice->SimpleInput.WaitForKey != NULL) {
1190 gBS->CloseEvent (TerminalDevice->SimpleInput.WaitForKey);
1388 gBS->CloseEvent (TerminalDevice->SimpleInput.WaitForKey);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DConsole.c460 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEditInputBar.c188 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
H A DBiosKeyboard.c291 // Setup the WaitForKey event
298 &((BiosKeyboardPrivate->SimpleTextIn).WaitForKey)
301 (BiosKeyboardPrivate->SimpleTextIn).WaitForKey = NULL;
458 if ((BiosKeyboardPrivate->SimpleTextIn).WaitForKey != NULL) {
459 gBS->CloseEvent ((BiosKeyboardPrivate->SimpleTextIn).WaitForKey);
566 gBS->CloseEvent ((BiosKeyboardPrivate->SimpleTextIn).WaitForKey);
910 Reads the next keystroke from the input device. The WaitForKey Event can
947 // Add a stall period can greatly increate other driver performance during the WaitForKey is recursivly invoked.
1426 // Add a stall period can greatly increate other driver performance during the WaitForKey is recursivly invoked.
2097 Reads the next keystroke from the input device. The WaitForKey Even
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c3195 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
3214 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
3242 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
3276 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
3303 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
3324 gBS->WaitForEvent (1, &gST->ConIn->WaitForKey, &EventIndex);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Console/
H A DdaConsole.c259 Status = gBS->WaitForEvent( 1, &Proto->WaitForKey, &Edex);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitter.c542 &ConInPrivate->TextIn.WaitForKey
1793 gBS->CheckEvent (TextIn->WaitForKey);
3222 Reads the next keystroke from the input device. The WaitForKey Event can
3269 Reads the next keystroke from the input device. The WaitForKey Event can
3334 Status = gBS->CheckEvent (Private->TextInList[Index]->WaitForKey);
3434 Reads the next keystroke from the input device. The WaitForKey Event can
3769 Reads the next keystroke from the input device. The WaitForKey Event can
3845 Reads the next keystroke from the input device. The WaitForKey Event can
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/
H A DFrontPage.c928 Status = WaitForSingleEvent (gST->ConIn->WaitForKey, ONE_SECOND);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DInputHandler.c1385 UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, 0);
H A DUi.c2992 Status = UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, MinRefreshInterval);
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeTcgPhysicalPresenceLib/
H A DDxeTcgPhysicalPresenceLib.c444 Status = gBS->CheckEvent (gST->ConIn->WaitForKey);

Completed in 103 milliseconds