Lines Matching full:notify
209 * NotifyValue - Value from the Notify() request
240 /* Get the correct notify list type (System or Device) */
251 /* Get the notify object attached to the namespace Node */
262 * If there is no notify handler (Global or Local)
263 * for this object, just ignore the notify
268 "No notify handler for Notify, ignoring (%4.4s, %X) node %p\n",
274 /* Setup notify info and schedule the notify dispatcher */
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];
291 "Dispatching Notify on [%4.4s] (%s) Value 0x%2.2X (%s) Node %p\n",
310 * PARAMETERS: Context - To be passed to the notify handler
330 /* Invoke a global notify handler if installed */
332 if (Info->Notify.Global->Handler)
334 Info->Notify.Global->Handler (Info->Notify.Node,
335 Info->Notify.Value,
336 Info->Notify.Global->Context);
339 /* Now invoke the local notify handler(s) if any are installed */
341 HandlerObj = Info->Notify.HandlerListHead;
344 HandlerObj->Notify.Handler (Info->Notify.Node,
345 Info->Notify.Value,
346 HandlerObj->Notify.Context);
348 HandlerObj = HandlerObj->Notify.Next[Info->Notify.HandlerListId];