Lines Matching refs:thresholdWarningIntf
399 thresholdWarningIntf = in NumericSensor()
410 thresholdWarningIntf->warningHigh(unitModifier(warningHigh)); in NumericSensor()
411 thresholdWarningIntf->warningLow(unitModifier(warningLow)); in NumericSensor()
659 thresholdWarningIntf = in NumericSensor()
670 thresholdWarningIntf->warningHigh(unitModifier(warningHigh)); in NumericSensor()
671 thresholdWarningIntf->warningLow(unitModifier(warningLow)); in NumericSensor()
834 if (thresholdWarningIntf && in updateThresholds()
835 !std::isnan(thresholdWarningIntf->warningHigh())) in updateThresholds()
837 auto threshold = thresholdWarningIntf->warningHigh(); in updateThresholds()
838 auto alarm = thresholdWarningIntf->warningAlarmHigh(); in updateThresholds()
843 thresholdWarningIntf->warningAlarmHigh(newAlarm); in updateThresholds()
846 thresholdWarningIntf->warningHighAlarmAsserted(value); in updateThresholds()
850 thresholdWarningIntf->warningHighAlarmDeasserted(value); in updateThresholds()
855 if (thresholdWarningIntf && !std::isnan(thresholdWarningIntf->warningLow())) in updateThresholds()
857 auto threshold = thresholdWarningIntf->warningLow(); in updateThresholds()
858 auto alarm = thresholdWarningIntf->warningAlarmLow(); in updateThresholds()
863 thresholdWarningIntf->warningAlarmLow(newAlarm); in updateThresholds()
866 thresholdWarningIntf->warningLowAlarmAsserted(value); in updateThresholds()
870 thresholdWarningIntf->warningLowAlarmDeasserted(value); in updateThresholds()
940 if (!thresholdWarningIntf) in triggerThresholdEvent()
948 !std::isnan(thresholdWarningIntf->warningHigh())) in triggerThresholdEvent()
950 auto alarm = thresholdWarningIntf->warningAlarmHigh(); in triggerThresholdEvent()
955 thresholdWarningIntf->warningAlarmHigh(newAlarm); in triggerThresholdEvent()
958 thresholdWarningIntf->warningHighAlarmAsserted(value); in triggerThresholdEvent()
962 thresholdWarningIntf->warningHighAlarmDeasserted(value); in triggerThresholdEvent()
966 !std::isnan(thresholdWarningIntf->warningLow())) in triggerThresholdEvent()
968 auto alarm = thresholdWarningIntf->warningAlarmLow(); in triggerThresholdEvent()
973 thresholdWarningIntf->warningAlarmLow(newAlarm); in triggerThresholdEvent()
976 thresholdWarningIntf->warningLowAlarmAsserted(value); in triggerThresholdEvent()
980 thresholdWarningIntf->warningLowAlarmDeasserted(value); in triggerThresholdEvent()