Lines Matching refs:next
214 tmp = tmp->next; in start_one_shot_timer()
239 t->next = fast_timer_list; in start_one_shot_timer()
249 while (tmp->next && in start_one_shot_timer()
250 fasttime_cmp(&t->tv_expires, &tmp->next->tv_expires) > 0) in start_one_shot_timer()
251 tmp = tmp->next; in start_one_shot_timer()
254 t->next = tmp->next; in start_one_shot_timer()
255 if (tmp->next) in start_one_shot_timer()
257 tmp->next->prev = t; in start_one_shot_timer()
259 tmp->next = t; in start_one_shot_timer()
270 return (t->next != NULL) || (t->prev != NULL) || (t == fast_timer_list); in fast_timer_pending()
275 struct fast_timer *next, *prev; in detach_fast_timer() local
278 next = t->next; in detach_fast_timer()
280 if (next) in detach_fast_timer()
281 next->prev = prev; in detach_fast_timer()
283 prev->next = next; in detach_fast_timer()
285 fast_timer_list = next; in detach_fast_timer()
297 t->next = t->prev = NULL; in del_fast_timer()
374 t->prev->next = t->next; in timer_trig_handler()
376 fast_timer_list = t->next; in timer_trig_handler()
377 if (t->next) in timer_trig_handler()
378 t->next->prev = t->prev; in timer_trig_handler()
380 t->next = NULL; in timer_trig_handler()
582 nextt = t->next; in proc_fasttimer_show()
595 if (t->next != nextt) in proc_fasttimer_show()