Lines Matching refs:Timer
33 #include "timer.h"
36 static Timer* timers = NULL;
37 static Timer* free_timers = NULL;
61 list_add( Timer* t )
63 Timer* t2;
64 Timer* t2prev;
72 /* The new timer goes at the head of the list. */
100 list_remove( Timer* t )
112 list_resort( Timer* t )
114 /* Remove the timer from the list. */
121 Timer*
127 Timer* t;
135 t = (Timer*) malloc( sizeof(Timer) );
146 /* Add the new timer to the active list. */
162 /* Since the list is sorted, we only need to look at the first timer. */
180 Timer* t;
181 Timer* next;
186 /* Since the list is sorted, as soon as we find a timer
203 tmr_reset( struct iperf_time* nowP, Timer* t )
215 tmr_cancel( Timer* t )
229 Timer* t;