Lines Matching refs:timeout
46 if (a->timeout < b->timeout) in timer_less_than()
48 if (b->timeout < a->timeout) in timer_less_than()
61 handle->timeout = 0; in uv_timer_init()
70 uint64_t timeout, in uv_timer_start() argument
79 clamped_timeout = handle->loop->time + timeout; in uv_timer_start()
80 if (clamped_timeout < timeout) in uv_timer_start()
84 handle->timeout = clamped_timeout; in uv_timer_start()
137 if (handle->loop->time >= handle->timeout) in uv_timer_get_due_in()
140 return handle->timeout - handle->loop->time; in uv_timer_get_due_in()
154 if (handle->timeout <= loop->time) in uv__next_timeout()
157 diff = handle->timeout - loop->time; in uv__next_timeout()
179 if (handle->timeout > loop->time) in uv__run_timers()