Searched refs:NewNotify (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/
H A DPs2KbdTextIn.c560 KEYBOARD_CONSOLE_IN_EX_NOTIFY *NewNotify; local
595 NewNotify = (KEYBOARD_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (KEYBOARD_CONSOLE_IN_EX_NOTIFY));
596 if (NewNotify == NULL) {
601 NewNotify->Signature = KEYBOARD_CONSOLE_IN_EX_NOTIFY_SIGNATURE;
602 NewNotify->KeyNotificationFn = KeyNotificationFunction;
603 NewNotify->NotifyHandle = (EFI_HANDLE) NewNotify;
604 CopyMem (&NewNotify->KeyData, KeyData, sizeof (EFI_KEY_DATA));
605 InsertTailList (&ConsoleInDev->NotifyList, &NewNotify->NotifyEntry);
607 *NotifyHandle = NewNotify
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbKbDxe/
H A DEfiKey.c1049 KEYBOARD_CONSOLE_IN_EX_NOTIFY *NewNotify; local
1085 NewNotify = (KEYBOARD_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (KEYBOARD_CONSOLE_IN_EX_NOTIFY));
1086 if (NewNotify == NULL) {
1090 NewNotify->Signature = USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE;
1091 NewNotify->KeyNotificationFn = KeyNotificationFunction;
1092 NewNotify->NotifyHandle = (EFI_HANDLE) NewNotify;
1093 CopyMem (&NewNotify->KeyData, KeyData, sizeof (EFI_KEY_DATA));
1094 InsertTailList (&UsbKeyboardDevice->NotifyList, &NewNotify->NotifyEntry);
1097 *NotifyHandle = NewNotify
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminalConIn.c331 TERMINAL_CONSOLE_IN_EX_NOTIFY *NewNotify; local
364 NewNotify = (TERMINAL_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (TERMINAL_CONSOLE_IN_EX_NOTIFY));
365 if (NewNotify == NULL) {
369 NewNotify->Signature = TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE;
370 NewNotify->KeyNotificationFn = KeyNotificationFunction;
371 NewNotify->NotifyHandle = (EFI_HANDLE) NewNotify;
372 CopyMem (&NewNotify->KeyData, KeyData, sizeof (KeyData));
373 InsertTailList (&TerminalDevice->NotifyList, &NewNotify->NotifyEntry);
375 *NotifyHandle = NewNotify
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
H A DBiosKeyboard.c2253 BIOS_KEYBOARD_CONSOLE_IN_EX_NOTIFY *NewNotify; local
2291 NewNotify = (BIOS_KEYBOARD_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (BIOS_KEYBOARD_CONSOLE_IN_EX_NOTIFY));
2292 if (NewNotify == NULL) {
2297 NewNotify->Signature = BIOS_KEYBOARD_CONSOLE_IN_EX_NOTIFY_SIGNATURE;
2298 NewNotify->KeyNotificationFn = KeyNotificationFunction;
2299 NewNotify->NotifyHandle = (EFI_HANDLE) NewNotify;
2300 CopyMem (&NewNotify->KeyData, KeyData, sizeof (EFI_KEY_DATA));
2301 InsertTailList (&BiosKeyboardPrivate->NotifyList, &NewNotify->NotifyEntry);
2303 *NotifyHandle = NewNotify
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitter.c3575 TEXT_IN_EX_SPLITTER_NOTIFY *NewNotify; local
3610 NewNotify = (TEXT_IN_EX_SPLITTER_NOTIFY *) AllocateZeroPool (sizeof (TEXT_IN_EX_SPLITTER_NOTIFY));
3611 if (NewNotify == NULL) {
3614 NewNotify->NotifyHandleList = (EFI_HANDLE *) AllocateZeroPool (sizeof (EFI_HANDLE) * Private->CurrentNumberOfExConsoles);
3615 if (NewNotify->NotifyHandleList == NULL) {
3616 gBS->FreePool (NewNotify);
3619 NewNotify->Signature = TEXT_IN_EX_SPLITTER_NOTIFY_SIGNATURE;
3620 NewNotify->KeyNotificationFn = KeyNotificationFunction;
3621 NewNotify->NotifyHandle = (EFI_HANDLE) NewNotify;
[all...]

Completed in 1330 milliseconds