Home
last modified time | relevance | path

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

/openbmc/telemetry/src/
H A Dnumeric_threshold.hpp54 struct ThresholdDetail struct in NumericThreshold
61 ThresholdDetail(const std::string& sensorNameIn, in ThresholdDetail() argument
65 ~ThresholdDetail() = default;
66 ThresholdDetail(const ThresholdDetail&) = delete;
67 ThresholdDetail& operator=(const ThresholdDetail&) = delete;
68 ThresholdDetail(ThresholdDetail&&) = delete;
69 ThresholdDetail& operator=(ThresholdDetail&&) = delete;
81 std::shared_ptr<ThresholdDetail>>;
86 void startTimer(ThresholdDetail&, double);
88 ThresholdDetail& getDetails(const interfaces::Sensor& sensor);
[all …]
H A Ddiscrete_threshold.hpp55 struct ThresholdDetail struct in DiscreteThreshold
60 ThresholdDetail(const std::string& sensorNameIn, in ThresholdDetail() argument
64 ~ThresholdDetail() = default;
65 ThresholdDetail(const ThresholdDetail&) = delete;
66 ThresholdDetail& operator=(const ThresholdDetail&) = delete;
67 ThresholdDetail(ThresholdDetail&&) = delete;
68 ThresholdDetail& operator=(ThresholdDetail&&) = delete;
80 std::shared_ptr<ThresholdDetail>>;
85 void startTimer(ThresholdDetail&, double);
87 ThresholdDetail& getDetails(const interfaces::Sensor& sensor);
[all …]
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()