Lines Matching refs:timerInfo
129 OHOS::NativeRdb::ValuesBucket GetInsertValues(std::shared_ptr<TimerEntry> timerInfo, TimerPara ¶s)
132 insertValues.PutLong("timerId", timerInfo->id);
137 insertValues.PutInt("uid", timerInfo->uid);
138 insertValues.PutString("bundleName", timerInfo->bundleName);
140 OHOS::AbilityRuntime::WantAgent::WantAgentHelper::ToString(timerInfo->wantAgent));
143 insertValues.PutInt("pid", timerInfo->pid);
163 std::shared_ptr<TimerEntry> timerInfo;
170 timerInfo = std::make_shared<TimerEntry>(TimerEntry {
182 timerEntryMap_.insert(std::make_pair(timerId, timerInfo));
189 GetInsertValues(timerInfo, paras));
192 GetInsertValues(timerInfo, paras));
197 void TimerManager::ReCreateTimer(uint64_t timerId, std::shared_ptr<TimerEntry> timerInfo)
200 timerEntryMap_.insert(std::make_pair(timerId, timerInfo));
205 std::shared_ptr<TimerEntry> timerInfo;
213 timerInfo = it->second;
218 timerId, timerInfo->type, timerInfo->windowLength, timerInfo->interval, timerInfo->flag,
226 SetHandler(timerInfo->id, timerInfo->type, triggerTime, timerInfo->windowLength, timerInfo->interval,
227 timerInfo->flag, timerInfo->callback, timerInfo->wantAgent, timerInfo->uid, timerInfo->pid,
228 timerInfo->bundleName);
229 auto tableName = (CheckNeedRecoverOnReboot(timerInfo->bundleName, timerInfo->type)