Home
last modified time | relevance | path

Searched refs:timerListHead_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/context/
H A Djs_timer_list.cpp33 timer->next = timerListHead_; in AddTimer()
37 timerListHead_ = timer; in AddTimer()
44 TimerNode *current = timerListHead_; in GetTimer()
56 if (timerListHead_ == nullptr) { in DeleteTimer()
59 TimerNode *current = timerListHead_; in DeleteTimer()
66 if (current == timerListHead_) { in DeleteTimer()
67 timerListHead_ = current->next; in DeleteTimer()
77 while (timerListHead_ != nullptr) { in ClearTimerList()
78 TimerNode *current = timerListHead_; in ClearTimerList()
79 timerListHead_ = timerListHead_->next; in ClearTimerList()
H A Djs_timer_list.h38 TimerList() : timerListHead_(nullptr), index_(0) {} in TimerList()
82 TimerNode *timerListHead_; variable