Lines Matching defs:timer
40 static void timer_cb(uv_timer_t* timer) {
42 uv_close((uv_handle_t*) timer, NULL);
459 static void timer_cb_touch(uv_timer_t* timer) {
460 uv_close((uv_handle_t*)timer, NULL);
485 uv_timer_t timer;
503 r = uv_timer_init(loop, &timer);
506 r = uv_timer_start(&timer, timer_cb_touch, 100, 0);
561 * the timer cb fires before the event loop enters uv__io_poll,
622 uv_timer_t timer;
642 r = uv_timer_init(loop, &timer);
659 r = uv_timer_start(&timer, timer_cb_touch, 100, 0);