Lines Matching refs:timerManager

334     auto timerManager = TimerManager::GetInstance();  in CreateTimer()  local
335 if (timerManager == nullptr) { in CreateTimer()
338 auto callbackFunc = [timerCallback, timerOptions, timerManager](uint64_t id) -> int32_t { in CreateTimer()
342 auto notifyCallback = TimerNotifyCallback::GetInstance(timerManager); in CreateTimer()
362 return timerManager->CreateTimer(paras, callbackFunc, timerOptions->wantAgent, in CreateTimer()
369 auto timerManager = TimerManager::GetInstance(); in CreateTimer() local
370 if (timerManager == nullptr) { in CreateTimer()
373 return timerManager->CreateTimer(paras, std::move(callback), nullptr, 0, 0, timerId, NOT_STORE); in CreateTimer()
378 auto timerManager = TimerManager::GetInstance(); in StartTimer() local
379 if (timerManager == nullptr) { in StartTimer()
382 auto ret = timerManager->StartTimer(timerId, triggerTime); in StartTimer()
388 auto timerManager = TimerManager::GetInstance(); in StopTimer() local
389 if (timerManager == nullptr) { in StopTimer()
392 auto ret = timerManager->StopTimer(timerId); in StopTimer()
398 auto timerManager = TimerManager::GetInstance(); in DestroyTimer() local
399 if (timerManager == nullptr) { in DestroyTimer()
402 auto ret = timerManager->DestroyTimer(timerId); in DestroyTimer()
518 auto timerManager = TimerManager::GetInstance(); in DumpTimerInfo() local
519 if (timerManager == nullptr) { in DumpTimerInfo()
522 timerManager->ShowTimerEntryMap(fd); in DumpTimerInfo()
529 auto timerManager = TimerManager::GetInstance(); in DumpTimerInfoById() local
530 if (timerManager == nullptr) { in DumpTimerInfoById()
533 timerManager->ShowTimerEntryById(fd, std::atoi(input.at(paramNumPos).c_str())); in DumpTimerInfoById()
540 auto timerManager = TimerManager::GetInstance(); in DumpTimerTriggerById() local
541 if (timerManager == nullptr) { in DumpTimerTriggerById()
544 timerManager->ShowTimerTriggerById(fd, std::atoi(input.at(paramNumPos).c_str())); in DumpTimerTriggerById()
550 auto timerManager = TimerManager::GetInstance(); in DumpIdleTimerInfo() local
551 if (timerManager == nullptr) { in DumpIdleTimerInfo()
554 timerManager->ShowIdleTimerInfo(fd); in DumpIdleTimerInfo()
757 auto timerManager = TimerManager::GetInstance(); in ProxyTimer() local
758 if (timerManager == nullptr) { in ProxyTimer()
761 return timerManager->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer()
766 auto timerManager = TimerManager::GetInstance(); in AdjustTimer() local
767 if (timerManager == nullptr) { in AdjustTimer()
770 if (!timerManager->AdjustTimer(isAdjust, interval)) { in AdjustTimer()
782 auto timerManager = TimerManager::GetInstance(); in ProxyTimer() local
783 if (timerManager == nullptr) { in ProxyTimer()
786 return timerManager->ProxyTimer(uid, pidList, isProxy, needRetrigger); in ProxyTimer()
791 auto timerManager = TimerManager::GetInstance(); in SetTimerExemption() local
792 if (timerManager == nullptr) { in SetTimerExemption()
795 timerManager->SetTimerExemption(nameArr, isExemption); in SetTimerExemption()
806 auto timerManager = TimerManager::GetInstance(); in ResetAllProxy() local
807 if (timerManager == nullptr) { in ResetAllProxy()
810 return timerManager->ResetAllProxy(); in ResetAllProxy()
835 auto timerManager = TimerManager::GetInstance(); in OnRemoteDied() local
836 if (timerManager == nullptr) { in OnRemoteDied()
839 timerManager->HandleRSSDeath(); in OnRemoteDied()
920 auto timerManager = TimerManager::GetInstance(); in RecoverTimerInner() local
921 if (timerManager == nullptr) { in RecoverTimerInner()
953 timerManager->ReCreateTimer(timerId, timerInfo); in RecoverTimerInner()
959 timerManager->StartTimer(timerId, triggerTime); in RecoverTimerInner()