Home
last modified time | relevance | path

Searched refs:tConf (Results 1 – 6 of 6) sorted by relevance

/openbmc/phosphor-fan-presence/control/
H A Dactions.cpp14 Action call_actions_based_on_timer(TimerConf&& tConf, in call_actions_based_on_timer() argument
17 return [tConf = std::move(tConf), actions = std::move(actions)]( in call_actions_based_on_timer()
29 zone.addTimer(__func__, group, actions, tConf); in call_actions_based_on_timer()
44 zone.addTimer(__func__, group, actions, tConf); in call_actions_based_on_timer()
H A Dtriggers.cpp14 Trigger timer(TimerConf&& tConf) in timer() argument
16 return [tConf = std::move(tConf)]( in timer()
19 zone.addTimer(name, group, actions, tConf); in timer()
H A Dzone.cpp385 const std::vector<Action>& actions, const TimerConf& tConf) in addTimer() argument
393 if (std::get<TimerType>(tConf) == TimerType::repeating) in addTimer()
395 timer.restart(std::get<intervalPos>(tConf)); in addTimer()
397 else if (std::get<TimerType>(tConf) == TimerType::oneshot) in addTimer()
399 timer.restartOnce(std::get<intervalPos>(tConf)); in addTimer()
H A Dtriggers.hpp25 Trigger timer(TimerConf&& tConf);
H A Dzone.hpp520 const std::vector<Action>& actions, const TimerConf& tConf);
H A Dactions.hpp30 Action call_actions_based_on_timer(TimerConf&& tConf,