Lines Matching defs:next
105 for (t = TimerList; t; t = t->next) {
122 tp->next = t;
124 pt->next = tp;
142 * A RUNNING timer must be removed from TimerList (->next list).
143 * A STOPPED timer isn't in any list, but may have a bogus [e]next field.
151 for (t = TimerList; t != tp && t != NULL; t = t->next)
156 pt->next = t->next;
158 TimerList = t->next;
162 if (t->next) {
164 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
166 t->next->rest += t->rest;
167 if (!pt && t->next->rest > 0) /* t->next is now the first in the list */
185 tp->next = tp->enext = NULL;
192 struct pppTimer *tp, *exp, *next;
211 next = tp->next;
214 tp = next;
256 "%s timer[%p]: freq = %ld.%02lds, next = %lu.%02lus, state = %s\n", \
263 for (pt = TimerList; pt; pt = pt->next) {