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.cpp418 thresholdCriticalIntf = in NumericSensor()
678 thresholdCriticalIntf = in NumericSensor()
875 if (thresholdCriticalIntf && in updateThresholds()
876 !std::isnan(thresholdCriticalIntf->criticalHigh())) in updateThresholds()
878 auto threshold = thresholdCriticalIntf->criticalHigh(); in updateThresholds()
884 thresholdCriticalIntf->criticalAlarmHigh(newAlarm); in updateThresholds()
896 if (thresholdCriticalIntf && in updateThresholds()
897 !std::isnan(thresholdCriticalIntf->criticalLow())) in updateThresholds()
899 auto threshold = thresholdCriticalIntf->criticalLow(); in updateThresholds()
905 thresholdCriticalIntf->criticalAlarmLow(newAlarm); in updateThresholds()
[all …]
H A Dnumeric_sensor.hpp122 if (thresholdCriticalIntf) in getThresholdUpperCritical()
124 return thresholdCriticalIntf->criticalHigh(); in getThresholdUpperCritical()
138 if (thresholdCriticalIntf) in getThresholdLowerCritical()
140 return thresholdCriticalIntf->criticalLow(); in getThresholdLowerCritical()
237 std::unique_ptr<ThresholdCriticalIntf> thresholdCriticalIntf = nullptr; member in pldm::platform_mc::NumericSensor