Lines Matching refs:timerId
103 uint64_t timerId = StrongAuthManger::GetInstance()->GetTimerId(userId); in StrongAuthTimerCallback() local
125 uint64_t timerId = 0; in GetTimerId() local
128 timerId = iter->second; in GetTimerId()
130 return timerId; in GetTimerId()
180 uint64_t timerId = GetTimerId(userId); in StartStrongAuthTimer() local
181 if (timerId != 0) { in StartStrongAuthTimer()
189 timerId = MiscServices::TimeServiceClient::GetInstance()->CreateTimer(timer); in StartStrongAuthTimer()
191 …MiscServices::TimeServiceClient::GetInstance()->StartTimer(timerId, currentTime + DEFAULT_STRONG_A… in StartStrongAuthTimer()
192 strongAuthTimerInfo.insert(std::make_pair(userId, timerId)); in StartStrongAuthTimer()
198 uint64_t timerId = GetTimerId(userId); in ResetStrongAuthTimer() local
199 if (timerId == 0) { in ResetStrongAuthTimer()
204 MiscServices::TimeServiceClient::GetInstance()->StopTimer(timerId); in ResetStrongAuthTimer()
205 …MiscServices::TimeServiceClient::GetInstance()->StartTimer(timerId, currentTime + DEFAULT_STRONG_A… in ResetStrongAuthTimer()
220 uint64_t timerId = GetTimerId(userId); in DestroyStrongAuthTimer() local
221 if (timerId == 0) { in DestroyStrongAuthTimer()
224 MiscServices::TimeServiceClient::GetInstance()->StopTimer(timerId); in DestroyStrongAuthTimer()
225 MiscServices::TimeServiceClient::GetInstance()->DestroyTimer(timerId); in DestroyStrongAuthTimer()