Lines Matching refs:notifyObject
291 BatteryMonitor_NotifyObj *notifyObject);
356 int_fast16_t BatteryMonitor_registerNotifyHigh(BatteryMonitor_NotifyObj *notifyObject,
387 int_fast16_t BatteryMonitor_registerNotifyLow(BatteryMonitor_NotifyObj *notifyObject,
424 int_fast16_t BatteryMonitor_registerNotifyRange(BatteryMonitor_NotifyObj *notifyObject,
445 int_fast16_t BatteryMonitor_unregisterNotify(BatteryMonitor_NotifyObj *notifyObject);
461 static inline uint16_t BatteryMonitor_getThresholdHigh(BatteryMonitor_NotifyObj *notifyObject) in BatteryMonitor_getThresholdHigh() argument
463 return notifyObject->thresholdHigh; in BatteryMonitor_getThresholdHigh()
480 static inline uint16_t BatteryMonitor_getThresholdLow(BatteryMonitor_NotifyObj *notifyObject) in BatteryMonitor_getThresholdLow() argument
482 return notifyObject->thresholdLow; in BatteryMonitor_getThresholdLow()
504 static inline void BatteryMonitor_getThresholdRange(BatteryMonitor_NotifyObj *notifyObject, in BatteryMonitor_getThresholdRange() argument
508 *thresholdHigh = notifyObject->thresholdHigh; in BatteryMonitor_getThresholdRange()
509 *thresholdLow = notifyObject->thresholdLow; in BatteryMonitor_getThresholdRange()
522 static inline uintptr_t BatteryMonitor_getClientArg(BatteryMonitor_NotifyObj *notifyObject) in BatteryMonitor_getClientArg() argument
524 return notifyObject->clientArg; in BatteryMonitor_getClientArg()
537 …inline BatteryMonitor_NotifyFxn BatteryMonitor_getNotifyFxn(BatteryMonitor_NotifyObj *notifyObject) in BatteryMonitor_getNotifyFxn() argument
539 return notifyObject->notifyFxn; in BatteryMonitor_getNotifyFxn()