Lines Matching refs:curTimer
209 auto curTimer = std::move(*it);
211 ++curTimer->callbackCount;
212 if ((curTimer->repeatCount >= 1) && (curTimer->callbackCount >= curTimer->repeatCount)) {
213 curTimer->callback();
216 if (!AddInt64(curTimer->nextCallTime, curTimer->intervalMs, curTimer->nextCallTime)) {
220 auto callback = curTimer->callback;
221 InsertTimerInternal(curTimer);