Home | History | Annotate | Download | only in Dxe

Lines Matching defs:Event

154   EFI_EVENT                   Event;

411 Initializes "event" support.
438 Creates an event that is fired everytime a Protocol of a specific type is installed.
664 event. The firmware reserves codes 0x0000 to 0xFFFF.
672 watchdog event.
994 @param Event The event to signal
1006 IN EFI_EVENT Event,
1012 Event.
1014 @param Event The event to search for in the protocol
1022 IN EFI_EVENT Event
1538 Creates an event.
1540 @param Type The type of event to create and its mode and
1542 @param NotifyTpl The task priority level of event notifications
1547 @param Event Pointer to the newly created event if the call
1550 @retval EFI_SUCCESS The event structure was created
1552 @retval EFI_OUT_OF_RESOURCES The event could not be allocated
1562 OUT EFI_EVENT *Event
1568 Creates an event in a group.
1570 @param Type The type of event to create and its mode and
1572 @param NotifyTpl The task priority level of event notifications
1579 @param Event Pointer to the newly created event if the call
1582 @retval EFI_SUCCESS The event structure was created
1584 @retval EFI_OUT_OF_RESOURCES The event could not be allocated
1595 OUT EFI_EVENT *Event
1599 Creates a general-purpose event structure
1601 @param Type The type of event to create and its mode and
1603 @param NotifyTpl The task priority level of event notifications
1610 @param Event Pointer to the newly created event if the call
1613 @retval EFI_SUCCESS The event structure was created
1615 @retval EFI_OUT_OF_RESOURCES The event could not be allocated
1626 OUT EFI_EVENT *Event
1630 Sets the type of timer and the trigger time for a timer event.
1632 @param UserEvent The timer event that is to be signaled at the
1639 @retval EFI_SUCCESS The event has been set to be signaled at the
1641 @retval EFI_INVALID_PARAMETER Event or Type is not valid
1655 Signals the event. Queues the event to be notified if needed.
1657 @param UserEvent The event to signal .
1660 @retval EFI_SUCCESS The event was signaled.
1672 Stops execution until an event is signaled.
1676 @param UserIndex Pointer to the index of the event which
1679 @retval EFI_SUCCESS The event indicated by Index was signaled.
1680 @retval EFI_INVALID_PARAMETER The event indicated by Index has a notification
1681 function or Event was not a valid type
1696 Closes an event and frees the event structure.
1698 @param UserEvent Event to close
1701 @retval EFI_SUCCESS The event has been closed
1713 Check the status of an event.
1715 @param UserEvent The event to check
1717 @retval EFI_SUCCESS The event is in the signaled state
1718 @retval EFI_NOT_READY The event is not in the signaled state
1719 @retval EFI_INVALID_PARAMETER Event is of type EVT_NOTIFY_SIGNAL
2682 @param Event Event whose notification function is being invoked.
2690 IN EFI_EVENT Event,