Lines Matching refs:now
126 struct iperf_time now; in tmr_create() local
129 getnow( nowP, &now ); in tmr_create()
144 t->time = now; in tmr_create()
156 struct iperf_time now, diff; in tmr_timeout() local
161 getnow( nowP, &now ); in tmr_timeout()
165 past = iperf_time_diff(&timers->time, &now, &diff); in tmr_timeout()
179 struct iperf_time now; in tmr_run() local
183 getnow( nowP, &now ); in tmr_run()
189 if (iperf_time_compare(&t->time, &now) > 0) in tmr_run()
191 (t->timer_proc)( t->client_data, &now ); in tmr_run()
205 struct iperf_time now; in tmr_reset() local
207 getnow( nowP, &now ); in tmr_reset()
208 t->time = now; in tmr_reset()