HomeSort by relevance Sort by last modified time
    Searched defs:ProtEntry (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Notify.c 23 @param ProtEntry Protocol entry
28 IN PROTOCOL_ENTRY *ProtEntry
36 for (Link=ProtEntry->Notify.ForwardLink; Link != &ProtEntry->Notify; Link=Link->ForwardLink) {
63 PROTOCOL_ENTRY *ProtEntry;
71 ProtEntry = Prot->Protocol;
76 for(Link = ProtEntry->Notify.ForwardLink; Link != &ProtEntry->Notify; Link=Link->ForwardLink) {
115 PROTOCOL_ENTRY *ProtEntry;
131 ProtEntry = CoreFindProtocolEntry (Protocol, TRUE);
    [all...]
Locate.c 31 PROTOCOL_ENTRY *ProtEntry;
185 Position.ProtEntry = CoreFindProtocolEntry (Protocol, FALSE);
186 if (Position.ProtEntry == NULL) {
190 Position.Position = &Position.ProtEntry->Protocols;
382 if (Link == &Position->ProtEntry->Protocols) {
592 Position.ProtEntry = CoreFindProtocolEntry (Protocol, FALSE);
593 if (Position.ProtEntry == NULL) {
597 Position.Position = &Position.ProtEntry->Protocols;
Handle.c 106 PROTOCOL_ENTRY *ProtEntry;
114 ProtEntry = NULL;
126 ProtEntry = Item;
135 if ((ProtEntry == NULL) && Create) {
136 ProtEntry = AllocatePool (sizeof(PROTOCOL_ENTRY));
138 if (ProtEntry != NULL) {
142 ProtEntry->Signature = PROTOCOL_ENTRY_SIGNATURE;
143 CopyGuid ((VOID *)&ProtEntry->ProtocolID, Protocol);
144 InitializeListHead (&ProtEntry->Protocols);
145 InitializeListHead (&ProtEntry->Notify);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Notify.c 28 PROTOCOL_ENTRY *ProtEntry;
32 ProtEntry = Prot->Protocol;
33 for (Link=ProtEntry->Notify.ForwardLink; Link != &ProtEntry->Notify; Link=Link->ForwardLink) {
35 ProtNotify->Function (&ProtEntry->ProtocolID, Prot->Interface, Prot->Handle);
58 PROTOCOL_ENTRY *ProtEntry;
64 ProtEntry = Prot->Protocol;
69 for(Link = ProtEntry->Notify.ForwardLink; Link != &ProtEntry->Notify; Link=Link->ForwardLink) {
109 PROTOCOL_ENTRY *ProtEntry;
    [all...]
Handle.c 67 PROTOCOL_ENTRY *ProtEntry;
73 ProtEntry = NULL;
83 ProtEntry = Item;
92 if ((ProtEntry == NULL) && Create) {
93 ProtEntry = AllocatePool (sizeof(PROTOCOL_ENTRY));
94 if (ProtEntry != NULL) {
98 ProtEntry->Signature = PROTOCOL_ENTRY_SIGNATURE;
99 CopyGuid ((VOID *)&ProtEntry->ProtocolID, Protocol);
100 InitializeListHead (&ProtEntry->Protocols);
101 InitializeListHead (&ProtEntry->Notify);
    [all...]
Locate.c 30 PROTOCOL_ENTRY *ProtEntry;
155 if (Link == &Position->ProtEntry->Protocols) {
232 Position.ProtEntry = SmmFindProtocolEntry (Protocol, FALSE);
233 if (Position.ProtEntry == NULL) {
236 Position.Position = &Position.ProtEntry->Protocols;
342 Position.ProtEntry = SmmFindProtocolEntry (Protocol, FALSE);
343 if (Position.ProtEntry == NULL) {
347 Position.Position = &Position.ProtEntry->Protocols;

Completed in 1156 milliseconds