Lines Matching refs:Direction
43 Direction findThresholdDirection(const std::string& direct) in findThresholdDirection()
47 return Direction::HIGH; in findThresholdDirection()
51 return Direction::LOW; in findThresholdDirection()
53 return Direction::ERROR; in findThresholdDirection()
125 Direction direction = findThresholdDirection(directions); in parseThresholdsFromConfig()
127 if ((level == Level::ERROR) || (direction == Direction::ERROR)) in parseThresholdsFromConfig()
268 if (threshold.direction == thresholds::Direction::HIGH) in checkThresholds()
292 else if (threshold.direction == thresholds::Direction::LOW) in checkThresholds()
434 if (change.threshold.direction == thresholds::Direction::LOW) in checkThresholdsPowerDelay()
450 thresholds::Level level, thresholds::Direction direction, in assertThresholds()
495 thresholds::Direction, double>>> in parseThresholdsFromAttr()
499 std::make_tuple("average_min", Level::WARNING, Direction::LOW, in parseThresholdsFromAttr()
501 std::make_tuple("average_max", Level::WARNING, Direction::HIGH, in parseThresholdsFromAttr()
506 std::make_tuple("min", Level::WARNING, Direction::LOW, 0.0), in parseThresholdsFromAttr()
507 std::make_tuple("max", Level::WARNING, Direction::HIGH, 0.0), in parseThresholdsFromAttr()
508 std::make_tuple("lcrit", Level::CRITICAL, Direction::LOW, 0.0), in parseThresholdsFromAttr()
509 std::make_tuple("crit", Level::CRITICAL, Direction::HIGH, in parseThresholdsFromAttr()