Home
last modified time | relevance | path

Searched refs:thresholdCriticalIntf (Results 1 – 2 of 2) sorted by relevance

/openbmc/pldm/platform-mc/
H A Dnumeric_sensor.cpp345 thresholdCriticalIntf = in NumericSensor()
555 thresholdCriticalIntf = in NumericSensor()
711 if (thresholdCriticalIntf && in updateThresholds()
712 !std::isnan(thresholdCriticalIntf->criticalHigh())) in updateThresholds()
714 auto threshold = thresholdCriticalIntf->criticalHigh(); in updateThresholds()
720 thresholdCriticalIntf->criticalAlarmHigh(newAlarm); in updateThresholds()
732 if (thresholdCriticalIntf && in updateThresholds()
733 !std::isnan(thresholdCriticalIntf->criticalLow())) in updateThresholds()
735 auto threshold = thresholdCriticalIntf->criticalLow(); in updateThresholds()
736 auto alarm = thresholdCriticalIntf->criticalAlarmLow(); in updateThresholds()
[all …]
H A Dnumeric_sensor.hpp111 if (thresholdCriticalIntf) in getThresholdUpperCritical()
113 return thresholdCriticalIntf->criticalHigh(); in getThresholdUpperCritical()
127 if (thresholdCriticalIntf) in getThresholdLowerCritical()
129 return thresholdCriticalIntf->criticalLow(); in getThresholdLowerCritical()
196 std::unique_ptr<ThresholdCriticalIntf> thresholdCriticalIntf = nullptr; member in pldm::platform_mc::NumericSensor