Lines Matching refs:timer_handle
333 uv_timer_t timer_handle; in TEST_IMPL() local
335 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
336 ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 0, 0)); in TEST_IMPL()
340 ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 1, 0)); in TEST_IMPL()
344 uv_close((uv_handle_t*) &timer_handle, NULL); in TEST_IMPL()
386 uv_timer_t timer_handle; in TEST_IMPL() local
391 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
392 ASSERT_OK(uv_timer_start(&timer_handle, in TEST_IMPL()
398 uv_close((uv_handle_t*) &timer_handle, NULL); in TEST_IMPL()
410 uv_timer_t timer_handle; in TEST_IMPL() local
413 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
414 ASSERT_OK(uv_timer_start(&timer_handle, in TEST_IMPL()
427 uv_timer_t timer_handle; in TEST_IMPL() local
430 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
431 ASSERT_OK(uv_timer_start(&timer_handle, in TEST_IMPL()
444 uv_timer_t timer_handle; in TEST_IMPL() local
446 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
447 ASSERT_OK(uv_timer_start(&timer_handle, (uv_timer_cb) abort, 0, 0)); in TEST_IMPL()
448 uv_unref((uv_handle_t*) &timer_handle); in TEST_IMPL()