Lines Matching refs:timer_handle
44 uv_timer_t timer_handle;
92 err = uv_timer_init(loop, &ctx->timer_handle);
96 ctx->timer_handle.flags |= UV_HANDLE_INTERNAL;
97 uv__handle_unref(&ctx->timer_handle);
129 if (uv_is_active((uv_handle_t*)&ctx->timer_handle))
130 uv_close((uv_handle_t*)&ctx->timer_handle, timer_close_cb);
175 ctx = container_of(timer, struct poll_ctx, timer_handle);
221 uv_close((uv_handle_t*)&ctx->timer_handle, timer_close_cb);
229 if (uv_timer_start(&ctx->timer_handle, timer_cb, interval, 0))
240 ctx = container_of(timer, struct poll_ctx, timer_handle);