Lines Matching refs:ThresholdIntf
33 std::unordered_map<std::string, ThresholdIntf::Bound>{
34 {"Lower", ThresholdIntf::Bound::Lower},
35 {"Upper", ThresholdIntf::Bound::Upper}};
38 std::unordered_map<std::string, ThresholdIntf::Type>{
39 {"HardShutdown", ThresholdIntf::Type::HardShutdown},
40 {"SoftShutdown", ThresholdIntf::Type::SoftShutdown},
41 {"PerformanceLoss", ThresholdIntf::Type::PerformanceLoss},
42 {"Critical", ThresholdIntf::Type::Critical},
43 {"Warning", ThresholdIntf::Type::Warning}};
152 "TYPE", get<ThresholdIntf::Type>(key), "BOUND", in printConfig()
153 get<ThresholdIntf::Bound>(key), "VALUE", threshold.value, in printConfig()