Home | History | Annotate | Download | only in events

Lines Matching refs:Event

3  * Module Name: evxfevnt - External Interfaces, ACPI event disable/enable
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
288 * PARAMETERS: Event - The fixed eventto be enabled
293 * DESCRIPTION: Enable an ACPI event (fixed)
299 UINT32 Event,
316 /* Decode the Fixed Event */
318 if (Event > ACPI_EVENT_MAX)
324 * Enable the requested fixed event (by writing a one to the enable
328 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
338 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
347 "Could not enable %s event", AcpiUtGetEventName (Event)));
361 * PARAMETERS: Event - The fixed event to be disabled
366 * DESCRIPTION: Disable an ACPI event (fixed)
372 UINT32 Event,
389 /* Decode the Fixed Event */
391 if (Event > ACPI_EVENT_MAX)
397 * Disable the requested fixed event (by writing a zero to the enable
401 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
409 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
418 "Could not disable %s events", AcpiUtGetEventName (Event)));
432 * PARAMETERS: Event - The fixed event to be cleared
436 * DESCRIPTION: Clear an ACPI event (fixed)
442 UINT32 Event)
457 /* Decode the Fixed Event */
459 if (Event > ACPI_EVENT_MAX)
465 * Clear the requested fixed event (By writing a one to the status
469 AcpiGbl_FixedEventInfo[Event].StatusRegisterId,
482 * PARAMETERS: Event - The fixed event
483 * EventStatus - Where the current status of the event will
488 * DESCRIPTION: Obtains and returns the current status of the event
494 UINT32 Event,
510 /* Decode the Fixed Event */
512 if (Event > ACPI_EVENT_MAX)
517 /* Fixed event currently can be dispatched? */
519 if (AcpiGbl_FixedEventHandlers[Event].Handler)
524 /* Fixed event currently enabled? */
527 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &InByte);
539 /* Fixed event currently active? */
542 AcpiGbl_FixedEventInfo[Event].StatusRegisterId, &InByte);