Lines Matching defs:timerId
71 static const std::vector<std::string> ALL_DATA = { "timerId", "type", "flag", "windowLength", "interval", \
348 uint64_t &timerId)
390 uid, pid, timerId, type);
394 uint64_t &timerId)
400 return timerManager->CreateTimer(paras, std::move(callback), nullptr, 0, 0, timerId, NOT_STORE);
403 int32_t TimeSystemAbility::StartTimer(uint64_t timerId, uint64_t triggerTime)
409 auto ret = timerManager->StartTimer(timerId, triggerTime);
413 int32_t TimeSystemAbility::StopTimer(uint64_t timerId)
419 auto ret = timerManager->StopTimer(timerId);
423 int32_t TimeSystemAbility::DestroyTimer(uint64_t timerId, bool isAsync)
429 auto ret = timerManager->DestroyTimer(timerId);
983 auto timerId = static_cast<uint64_t>(GetLong(resultSet, 0));
985 // Line 0 is 'timerId'
986 timerId,
1011 timerManager->ReCreateTimer(timerId, timerInfo);
1017 timerManager->StartTimer(timerId, triggerTime);