Home
last modified time | relevance | path

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

/openbmc/pldm/platform-mc/
H A Dnumeric_sensor.cpp343 thresholdWarningIntf = in NumericSensor()
354 thresholdWarningIntf->warningHigh(unitModifier(warningHigh)); in NumericSensor()
355 thresholdWarningIntf->warningLow(unitModifier(warningLow)); in NumericSensor()
554 thresholdWarningIntf = in NumericSensor()
565 thresholdWarningIntf->warningHigh(unitModifier(warningHigh)); in NumericSensor()
566 thresholdWarningIntf->warningLow(unitModifier(warningLow)); in NumericSensor()
739 if (thresholdWarningIntf && in updateThresholds()
740 std::isfinite(thresholdWarningIntf->warningHigh())) in updateThresholds()
742 auto threshold = thresholdWarningIntf->warningHigh(); in updateThresholds()
743 auto alarm = thresholdWarningIntf->warningAlarmHigh(); in updateThresholds()
[all …]
H A Dnumeric_sensor.hpp154 if (thresholdWarningIntf) in getThresholdUpperWarning()
156 return thresholdWarningIntf->warningHigh(); in getThresholdUpperWarning()
170 if (thresholdWarningIntf) in getThresholdLowerWarning()
172 return thresholdWarningIntf->warningLow(); in getThresholdLowerWarning()
244 std::unique_ptr<ThresholdWarningIntf> thresholdWarningIntf = nullptr; member in pldm::platform_mc::NumericSensor