Lines Matching full:thresholds
12 #include "Thresholds.hpp"
57 objectServer, std::vector<thresholds::Threshold>{}); in makeSensors()
70 std::vector<thresholds::Threshold>{thresholds::Threshold{ in makeSensors()
71 thresholds::Level::CRITICAL, thresholds::Direction::HIGH, 95.0}}); in makeSensors()
75 objectServer, std::vector<thresholds::Threshold>{}); in makeSensors()
79 objectServer, std::vector<thresholds::Threshold>{}); in makeSensors()
83 objectServer, std::vector<thresholds::Threshold>{}); in makeSensors()
92 const std::vector<int32_t>& thresholds) in processTLimitThresholds() argument
94 std::vector<thresholds::Threshold> tLimitThresholds{}; in processTLimitThresholds()
98 thresholds::Threshold{thresholds::Level::WARNING, in processTLimitThresholds()
99 thresholds::Direction::LOW, in processTLimitThresholds()
100 static_cast<double>(thresholds[0])}, in processTLimitThresholds()
101 thresholds::Threshold{thresholds::Level::CRITICAL, in processTLimitThresholds()
102 thresholds::Direction::LOW, in processTLimitThresholds()
103 static_cast<double>(thresholds[1])}, in processTLimitThresholds()
104 thresholds::Threshold{thresholds::Level::HARDSHUTDOWN, in processTLimitThresholds()
105 thresholds::Direction::LOW, in processTLimitThresholds()
106 static_cast<double>(thresholds[2])}}; in processTLimitThresholds()