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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbKbDxe/
H A DEfiKey.c263 InitializeListHead (&UsbKeyboardDevice->NotifyList);
538 KbdFreeNotifyList (&UsbKeyboardDevice->NotifyList);
813 @param NotifyList The keyboard notify list to free.
816 @retval EFI_INVALID_PARAMETER NotifyList is NULL.
821 IN OUT LIST_ENTRY *NotifyList
827 if (NotifyList == NULL) {
830 while (!IsListEmpty (NotifyList)) {
831 Link = GetFirstNode (NotifyList);
1051 LIST_ENTRY *NotifyList; local
1063 NotifyList
1123 LIST_ENTRY *NotifyList; local
[all...]
H A DEfiKey.h152 LIST_ENTRY NotifyList; member in struct:__anon10885
560 @param NotifyList The keyboard notify list to free.
563 @retval EFI_INVALID_PARAMETER NotifyList is NULL.
568 IN OUT LIST_ENTRY *NotifyList
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Ppi/
H A DPpi.c212 // Since PpiData is used for NotifyList and PpiList, max resource
213 // is reached if the Install reaches the NotifyList
413 @param NotifyList Pointer to list of Descriptors to notify upon.
424 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
437 if (NotifyList == NULL) {
447 // This is loop installs all Notify descriptors in the NotifyList. It is
454 // Since PpiData is used for NotifyList and InstallList, max resource
465 if ((NotifyList->Flags & EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES) == 0) {
467 DEBUG((EFI_D_ERROR, "ERROR -> InstallNotify: %g %p\n", NotifyList->Guid, NotifyList
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminalConIn.c333 LIST_ENTRY *NotifyList; local
345 NotifyList = &TerminalDevice->NotifyList;
346 for (Link = GetFirstNode (NotifyList); !IsNull (NotifyList,Link); Link = GetNextNode (NotifyList,Link)) {
373 InsertTailList (&TerminalDevice->NotifyList, &NewNotify->NotifyEntry);
403 LIST_ENTRY *NotifyList; local
415 NotifyList = &TerminalDevice->NotifyList;
782 LIST_ENTRY *NotifyList; local
[all...]
H A DTerminal.c92 { // NotifyList
754 InitializeListHead (&TerminalDevice->NotifyList);
1197 TerminalFreeNotifyList (&TerminalDevice->NotifyList);
1390 TerminalFreeNotifyList (&TerminalDevice->NotifyList);
H A DTerminal.h111 LIST_ENTRY NotifyList; member in struct:__anon11144
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/
H A DPs2KbdTextIn.c576 for (Link = ConsoleInDev->NotifyList.ForwardLink; Link != &ConsoleInDev->NotifyList; Link = Link->ForwardLink) {
605 InsertTailList (&ConsoleInDev->NotifyList, &NewNotify->NotifyEntry);
658 for (Link = ConsoleInDev->NotifyList.ForwardLink; Link != &ConsoleInDev->NotifyList; Link = Link->ForwardLink) {
667 // Remove the notification function from NotifyList and free resources
H A DPs2Keyboard.c86 @retval EFI_SUCCESS Sucess to free NotifyList
254 InitializeListHead (&ConsoleIn->NotifyList);
399 KbdFreeNotifyList (&ConsoleIn->NotifyList);
553 KbdFreeNotifyList (&ConsoleIn->NotifyList);
566 @retval EFI_SUCCESS Sucess to free NotifyList
H A DPs2Keyboard.h120 LIST_ENTRY NotifyList; member in struct:__anon10331
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
H A DAcpiTable.h150 LIST_ENTRY NotifyList; member in struct:__anon11118
H A DAcpiSdt.c180 StartLink = &AcpiTableInstance->NotifyList;
312 InsertTailList (&AcpiTableInstance->NotifyList, &CurrentNotifyList->Link);
345 StartLink = &AcpiTableInstance->NotifyList;
1099 InitializeListHead (&AcpiTableInstance->NotifyList);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DPeiServicesLib.h84 @param NotifyList A pointer to the list of notification interfaces that the caller
88 @retval EFI_INVALID_PARAMETER The NotifyList pointer is NULL.
97 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesLib/
H A DPeiServicesLib.c120 @param NotifyList A pointer to the list of notification interfaces
124 @retval EFI_INVALID_PARAMETER The NotifyList pointer is NULL.
134 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
140 return (*PeiServices)->NotifyPpi (PeiServices, NotifyList);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
H A DBiosKeyboard.c280 InitializeListHead (&BiosKeyboardPrivate->NotifyList);
465 BiosKeyboardFreeNotifyList (&BiosKeyboardPrivate->NotifyList);
569 BiosKeyboardFreeNotifyList (&BiosKeyboardPrivate->NotifyList);
1940 for (Link = BiosKeyboardPrivate->NotifyList.ForwardLink; Link != &BiosKeyboardPrivate->NotifyList; Link = Link->ForwardLink) {
2271 for (Link = BiosKeyboardPrivate->NotifyList.ForwardLink; Link != &BiosKeyboardPrivate->NotifyList; Link = Link->ForwardLink) {
2301 InsertTailList (&BiosKeyboardPrivate->NotifyList, &NewNotify->NotifyEntry);
2355 for (Link = BiosKeyboardPrivate->NotifyList.ForwardLink; Link != &BiosKeyboardPrivate->NotifyList; Lin
[all...]
H A DBiosKeyboard.h231 LIST_ENTRY NotifyList; member in struct:__anon10371
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Pi/
H A DPiPeiCis.h228 @param NotifyList A pointer to the list of notification interfaces that the caller shall install.
240 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitter.c569 InitializeListHead (&ConInPrivate->NotifyList);
3597 for (Link = Private->NotifyList.ForwardLink; Link != &Private->NotifyList; Link = Link->ForwardLink) {
3642 InsertTailList (&mConIn.NotifyList, &NewNotify->NotifyEntry);
3694 for (Link = Private->NotifyList.ForwardLink; Link != &Private->NotifyList; Link = Link->ForwardLink) {
H A DConSplitter.h131 LIST_ENTRY NotifyList; member in struct:__anon11134
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/
H A DPeiMain.h65 /// PPI database structure which contains two link: PpiList and NotifyList. PpiList
468 @param NotifyList Pointer to list of Descriptors to notify upon.
479 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A DBuildReport.py1081 # @param NotifyList The list of all notify function in a module
1083 def _GenerateFixedAddressReport(self, File, Guid, NotifyList):
1109 elif Symbol in NotifyList:

Completed in 119 milliseconds