Lines Matching refs:timerNode
124 TimerNode *timerNode = CreateTimer();
125 LE_CHECK(timerNode != NULL, return LE_FAILURE, "Failed to create timer");
126 timerNode->process = processTimer;
127 timerNode->context = context;
128 *timer = (TimerHandle)timerNode;
139 TimerNode *timerNode = (TimerNode *)timer;
140 timerNode->timeout = timeout;
141 timerNode->repeat = repeat > 0 ? repeat : 1;
143 InsertTimerNode(loop, timerNode);
151 TimerNode *timerNode = ListEntry(loop->timerList.next, TimerNode, node);
152 LE_CHECK(timerNode != NULL, return 0, "Invalid timeNode");
154 return timerNode->endTime;