Lines Matching full:timers
108 static volatile struct xorg_list timers; variable
114 if (timers.next == &timers) in first_timer()
116 return xorg_list_first_entry(&timers, struct _OsTimerRec, list); in first_timer()
121 * any expired timers
139 /* time has rewound. reset the timers. */ in check_timers()
250 * Timers might drop out of the list, so we have to restart every time. */
261 xorg_list_for_each_entry(timer, &timers, list) { in CheckAllTimers()
332 xorg_list_for_each_entry_safe(existing, tmp, &timers, list) in TimerSet()
335 /* This even works at the end of the list -- existing->list will be timers */ in TimerSet()
392 xorg_list_init((struct xorg_list*) &timers); in TimerInit()
395 xorg_list_for_each_entry_safe(timer, tmp, &timers, list) { in TimerInit()