Lines Matching defs:Event
1 /* $NetBSD: event.c,v 1.3 2018/08/16 18:22:05 jmcneill Exp $ */
9 event.c
37 EFI_EVENT Event;
40 // Create the event
50 &Event
56 // Register for protocol notifactions on this event
63 Event,
70 // Kick the event so we will perform an initial pass of
74 uefi_call_wrapper(BS->SignalEvent, 1, Event);
75 return Event;
81 IN EFI_EVENT Event,
92 // Create a timer event
99 // Set the timer event
105 // Wait for the original event or the timer
108 WaitList[0] = Event;
125 // No timeout... just wait on the event
128 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
138 IN EFI_EVENT Event,
151 Status = WaitForSingleEvent (Event, 10000000);