Home | History | Annotate | Download | only in UefiLib

Lines Matching defs:Event

63   @param  ProtocolGuid    Supplies GUID of the protocol upon whose installation the event is fired.

64 @param NotifyTpl Supplies the task priority level of the event notifications.
65 @param NotifyFunction Supplies the function to notify when the event is signaled.
69 @return The notification event that was created.
83 EFI_EVENT Event;
86 // Create the event
94 &Event
99 // Register for protocol notifactions on this event
104 Event,
111 // Kick the event so we will perform an initial pass of
115 gBS->SignalEvent (Event);
116 return Event;
120 This function creates an event using NotifyTpl, NoifyFunction, and NotifyContext.
121 This event is signaled with EfiNamedEventSignal(). This provide the ability for
122 one or more listeners on the same event named by the GUID specified by Name.
124 @param Name Supplies GUID name of the event.
125 @param NotifyTpl Supplies the task priority level of the event notifications.
126 @param NotifyFunction Supplies the function to notify when the event is signaled.
130 @retval EFI_SUCCESS A named event was created.
131 @retval EFI_OUT_OF_RESOURCES There are not enough resource to create the named event.
145 EFI_EVENT Event;
149 // Create event
156 &Event
176 Event,
185 This function signals the named event specified by Name. The named event must
188 @param Name Supplies GUID name of the event.
190 @retval EFI_SUCCESS A named event was signaled.
191 @retval EFI_OUT_OF_RESOURCES There are not enough resource to signal the named event.