Lines Matching full:thresholds
111 std::map<Type, bound_map_t> thresholds; in initProperties() local
112 for (const auto& [key, value] : config.thresholds) in initProperties()
116 auto threshold = thresholds.find(type); in initProperties()
117 if (threshold == thresholds.end()) in initProperties()
121 thresholds.emplace(type, bounds); in initProperties()
128 ThresholdIntf::value(thresholds, true); in initProperties()
155 auto thresholds = ThresholdIntf::value(); in checkThreshold() local
157 if (thresholds.contains(type) && thresholds[type].contains(bound)) in checkThreshold()
159 auto tConfig = config.thresholds.at(threshold); in checkThreshold()
161 thresholds[type][bound] = thresholdValue; in checkThreshold()
162 ThresholdIntf::value(thresholds); in checkThreshold()
187 if (config.thresholds.find(threshold)->second.log) in checkThreshold()