Searched refs:TimerType (Results 1 – 9 of 9) sorted by relevance
34 TimerType getType(const json& jsonObj) in getType()45 return TimerType::oneshot; in getType()49 return TimerType::repeating; in getType()
38 TimerType getType(const json& jsonObj);
109 if (_type == TimerType::repeating) in startTimer()113 else if (_type == TimerType::oneshot) in startTimer()176 _type = TimerType::oneshot; in setTimerConf()180 _type = TimerType::repeating; in setTimerConf()
128 TimerType _type;
210 using TimerType = typedef in phosphor::dbus::monitoring::DeferrableCallback236 timer = std::make_unique<TimerType>( in operator ()()270 std::unique_ptr<TimerType> timer = nullptr;
71 enum class TimerType enum76 using TimerConf = std::tuple<std::chrono::microseconds, TimerType>;
393 if (std::get<TimerType>(tConf) == TimerType::repeating) in addTimer()397 else if (std::get<TimerType>(tConf) == TimerType::oneshot) in addTimer()
55 enum class TimerType enum79 using TimerData = std::pair<TimerType, TimerPkg>;438 void addTimer(const TimerType type,
644 void Manager::addTimer(const TimerType type, in addTimer()652 if (type == TimerType::repeating) in addTimer()656 else if (type == TimerType::oneshot) in addTimer()758 if (data.first == TimerType::oneshot) in timerExpired()