Lines Matching refs:timer_
26 NfcTimer::NfcTimer() : timer_(std::make_unique<Utils::Timer>("NfcManagerTimer"))
28 timer_->Setup();
33 if (timer_) {
34 timer_->Shutdown(true);
35 timer_ = nullptr;
41 if (timer_ == nullptr) {
42 ErrorLog("timer_ is nullptr");
46 uint32_t ret = timer_->Register(callback, interval, true);
64 if (timer_ == nullptr) {
65 ErrorLog("timer_ is nullptr");
69 timer_->Unregister(timerId);