Home | History | Annotate | Download | only in events

Lines Matching refs:Event

3  * Module Name: evevent - Fixed Event handling and dispatch
33 * license, and in no event shall the patent license extend to any additions
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
103 * event Licensee exports any such software from the United States or
137 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
169 UINT32 Event);
288 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
301 * Initialize the structure that keeps track of fixed event handlers and
309 /* Disable the fixed event */
365 "Fixed Event Block: Enable %08X Status %08X\n",
373 /* Both the status and enable bits must be on for this event */
379 * Found an active (signalled) event. Invoke global event
401 * PARAMETERS: Event - Event type
405 * DESCRIPTION: Clears the status bit for the requested event, calls the
406 * handler that previously registered for the event.
407 * NOTE: If there is no handler for the event, the event is
414 UINT32 Event)
423 AcpiGbl_FixedEventInfo[Event].StatusRegisterId,
428 * and disable the event to prevent further interrupts.
430 if (!AcpiGbl_FixedEventHandlers[Event].Handler)
433 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
437 "No installed handler for fixed event - %s (%u), disabling",
438 AcpiUtGetEventName (Event), Event));
443 /* Invoke the Fixed Event handler */
445 return ((AcpiGbl_FixedEventHandlers[Event].Handler)(
446 AcpiGbl_FixedEventHandlers[Event].Context));