Home | History | Annotate | Download | only in lib

Lines Matching defs:Event

7     event.c
31 EFI_EVENT Event;
34 // Create the event
44 &Event
49 // Register for protocol notifactions on this event
56 Event,
63 // Kick the event so we will perform an initial pass of
67 uefi_call_wrapper(BS->SignalEvent, 1, Event);
68 return Event;
74 IN EFI_EVENT Event,
85 // Create a timer event
92 // Set the timer event
98 // Wait for the original event or the timer
101 WaitList[0] = Event;
118 // No timeout... just wait on the event
121 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
131 IN EFI_EVENT Event,
144 Status = WaitForSingleEvent (Event, 10000000);