Searched refs:tConf (Results 1 – 6 of 6) sorted by relevance
/openbmc/phosphor-fan-presence/control/ |
H A D | actions.cpp | 14 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 D | triggers.cpp | 14 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 D | zone.cpp | 385 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 D | triggers.hpp | 25 Trigger timer(TimerConf&& tConf);
|
H A D | zone.hpp | 520 const std::vector<Action>& actions, const TimerConf& tConf);
|
H A D | actions.hpp | 30 Action call_actions_based_on_timer(TimerConf&& tConf,
|