Home
last modified time | relevance | path

Searched refs:ThresholdDetail (Results 1 – 5 of 5) sorted by relevance

/openbmc/telemetry/src/
H A Dnumeric_threshold.hpp51 struct ThresholdDetail struct in NumericThreshold
58 ThresholdDetail(const std::string& sensorNameIn, in ThresholdDetail() argument
62 ThresholdDetail(const ThresholdDetail&) = delete;
63 ThresholdDetail(ThresholdDetail&&) = delete;
75 std::shared_ptr<ThresholdDetail>>;
80 void startTimer(ThresholdDetail&, double);
82 ThresholdDetail& getDetails(const interfaces::Sensor& sensor);
83 std::shared_ptr<ThresholdDetail> makeDetails(const std::string& sensorName);
H A Ddiscrete_threshold.hpp52 struct ThresholdDetail struct in DiscreteThreshold
57 ThresholdDetail(const std::string& sensorNameIn, in ThresholdDetail() argument
61 ThresholdDetail(const ThresholdDetail&) = delete;
62 ThresholdDetail(ThresholdDetail&&) = delete;
74 std::shared_ptr<ThresholdDetail>>;
79 void startTimer(ThresholdDetail&, double);
81 ThresholdDetail& getDetails(const interfaces::Sensor& sensor);
82 std::shared_ptr<ThresholdDetail> makeDetails(const std::string& sensorName);
H A Ddiscrete_threshold.cpp37 DiscreteThreshold::ThresholdDetail& DiscreteThreshold::getDetails( in getDetails()
43 std::shared_ptr<DiscreteThreshold::ThresholdDetail>
46 return std::make_shared<ThresholdDetail>(sensorName, ioc); in makeDetails()
67 void DiscreteThreshold::startTimer(DiscreteThreshold::ThresholdDetail& details, in startTimer()
H A Dnumeric_threshold.cpp32 NumericThreshold::ThresholdDetail& NumericThreshold::getDetails( in getDetails()
38 std::shared_ptr<NumericThreshold::ThresholdDetail>
41 return std::make_shared<ThresholdDetail>(sensorName, ioc); in makeDetails()
91 void NumericThreshold::startTimer(NumericThreshold::ThresholdDetail& details, in startTimer()
/openbmc/telemetry/src/utils/
H A Dthreshold_operations.hpp21 static typename ThresholdType::ThresholdDetail& getDetails( in getDetails()