Lines Matching refs:thresholdCriticalIntf

418             thresholdCriticalIntf =  in NumericSensor()
429 thresholdCriticalIntf->criticalHigh(unitModifier(criticalHigh)); in NumericSensor()
430 thresholdCriticalIntf->criticalLow(unitModifier(criticalLow)); in NumericSensor()
678 thresholdCriticalIntf = in NumericSensor()
689 thresholdCriticalIntf->criticalHigh(unitModifier(criticalHigh)); in NumericSensor()
690 thresholdCriticalIntf->criticalLow(unitModifier(criticalLow)); in NumericSensor()
875 if (thresholdCriticalIntf && in updateThresholds()
876 !std::isnan(thresholdCriticalIntf->criticalHigh())) in updateThresholds()
878 auto threshold = thresholdCriticalIntf->criticalHigh(); in updateThresholds()
879 auto alarm = thresholdCriticalIntf->criticalAlarmHigh(); in updateThresholds()
884 thresholdCriticalIntf->criticalAlarmHigh(newAlarm); in updateThresholds()
887 thresholdCriticalIntf->criticalHighAlarmAsserted(value); in updateThresholds()
891 thresholdCriticalIntf->criticalHighAlarmDeasserted(value); in updateThresholds()
896 if (thresholdCriticalIntf && in updateThresholds()
897 !std::isnan(thresholdCriticalIntf->criticalLow())) in updateThresholds()
899 auto threshold = thresholdCriticalIntf->criticalLow(); in updateThresholds()
900 auto alarm = thresholdCriticalIntf->criticalAlarmLow(); in updateThresholds()
905 thresholdCriticalIntf->criticalAlarmLow(newAlarm); in updateThresholds()
908 thresholdCriticalIntf->criticalLowAlarmAsserted(value); in updateThresholds()
912 thresholdCriticalIntf->criticalLowAlarmDeasserted(value); in updateThresholds()
987 if (!thresholdCriticalIntf) in triggerThresholdEvent()
995 !std::isnan(thresholdCriticalIntf->criticalHigh())) in triggerThresholdEvent()
997 auto alarm = thresholdCriticalIntf->criticalAlarmHigh(); in triggerThresholdEvent()
1002 thresholdCriticalIntf->criticalAlarmHigh(newAlarm); in triggerThresholdEvent()
1005 thresholdCriticalIntf->criticalHighAlarmAsserted(value); in triggerThresholdEvent()
1009 thresholdCriticalIntf->criticalHighAlarmDeasserted(value); in triggerThresholdEvent()
1013 !std::isnan(thresholdCriticalIntf->criticalLow())) in triggerThresholdEvent()
1015 auto alarm = thresholdCriticalIntf->criticalAlarmLow(); in triggerThresholdEvent()
1020 thresholdCriticalIntf->criticalAlarmLow(newAlarm); in triggerThresholdEvent()
1023 thresholdCriticalIntf->criticalLowAlarmAsserted(value); in triggerThresholdEvent()
1027 thresholdCriticalIntf->criticalLowAlarmDeasserted(value); in triggerThresholdEvent()