Lines Matching defs:Info
225 ACPI_GENERIC_STATE *Info;
274 /* Setup notify info and schedule the notify dispatcher */
276 Info = AcpiUtCreateGenericState ();
277 if (!Info)
282 Info->Common.DescriptorType = ACPI_DESC_TYPE_STATE_NOTIFY;
284 Info->Notify.Node = Node;
285 Info->Notify.Value = (UINT16) NotifyValue;
286 Info->Notify.HandlerListId = HandlerListId;
287 Info->Notify.HandlerListHead = HandlerListHead;
288 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId];
296 AcpiEvNotifyDispatch, Info);
299 AcpiUtDeleteGenericState (Info);
323 ACPI_GENERIC_STATE *Info = (ACPI_GENERIC_STATE *) Context;
332 if (Info->Notify.Global->Handler)
334 Info->Notify.Global->Handler (Info->Notify.Node,
335 Info->Notify.Value,
336 Info->Notify.Global->Context);
341 HandlerObj = Info->Notify.HandlerListHead;
344 HandlerObj->Notify.Handler (Info->Notify.Node,
345 Info->Notify.Value,
348 HandlerObj = HandlerObj->Notify.Next[Info->Notify.HandlerListId];
351 /* All done with the info object */
353 AcpiUtDeleteGenericState (Info);
428 /* Deallocate all handler objects installed within GPE info structs */