Home
last modified time | relevance | path

Searched refs:NumericThreshold (Results 1 – 4 of 4) sorted by relevance

/openbmc/telemetry/src/
H A Dnumeric_threshold.cpp5 NumericThreshold::NumericThreshold( in NumericThreshold() function in NumericThreshold
22 void NumericThreshold::initialize() in initialize()
27 void NumericThreshold::updateSensors(Sensors newSensors) in updateSensors()
32 NumericThreshold::ThresholdDetail& NumericThreshold::getDetails( in getDetails()
38 std::shared_ptr<NumericThreshold::ThresholdDetail>
39 NumericThreshold::makeDetails(const std::string& sensorName) in makeDetails()
44 void NumericThreshold::sensorUpdated(interfaces::Sensor& sensor, in sensorUpdated()
91 void NumericThreshold::startTimer(NumericThreshold::ThresholdDetail& details, in startTimer()
120 void NumericThreshold::commit(const std::string& sensorName, double value) in commit()
129 LabeledThresholdParam NumericThreshold::getThresholdParam() const in getThresholdParam()
H A Dnumeric_threshold.hpp19 class NumericThreshold : class
22 public std::enable_shared_from_this<NumericThreshold>
25 NumericThreshold(
32 NumericThreshold(const NumericThreshold&) = delete;
33 NumericThreshold(NumericThreshold&&) = delete;
H A Dtrigger_factory.cpp195 thresholds.emplace_back(std::make_shared<NumericThreshold>( in makeNumericThreshold()
/openbmc/telemetry/tests/src/
H A Dtest_numeric_threshold.cpp24 std::shared_ptr<NumericThreshold> sut;
36 sut = std::make_shared<NumericThreshold>( in makeThreshold()