Lines Matching refs:notifyObj
478 int_fast16_t Power_registerNotify(Power_NotifyObj *notifyObj, in Power_registerNotify() argument
486 if ((notifyObj == NULL) || (notifyFxn == NULL)) in Power_registerNotify()
496 notifyObj->eventTypes = eventTypes; in Power_registerNotify()
497 notifyObj->notifyFxn = notifyFxn; in Power_registerNotify()
498 notifyObj->clientArg = clientArg; in Power_registerNotify()
511 List_put(¬ifyList, (List_Elem *)notifyObj); in Power_registerNotify()
522 void Power_unregisterNotify(Power_NotifyObj *notifyObj) in Power_unregisterNotify() argument
527 notifyObj->notifyFxn, in Power_unregisterNotify()
528 notifyObj->eventTypes, in Power_unregisterNotify()
529 notifyObj->clientArg); in Power_unregisterNotify()
532 List_remove(¬ifyList, (List_Elem *)notifyObj); in Power_unregisterNotify()