Lines Matching refs:uv_timer_start
130 r = uv_timer_start(once, once_cb, i * 50, 0);
137 r = uv_timer_start(&repeat, repeat_cb, 100, 100);
143 r = uv_timer_start(&never, never_cb, 100, 100);
170 r = uv_timer_start(&once, never_cb, 86400 * 1000, 0);
172 r = uv_timer_start(&once, twice_cb, 10, 0);
220 ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));
222 ASSERT_OK(uv_timer_start(&handle_b, order_cb_b, 0, 0));
233 ASSERT_OK(uv_timer_start(&handle_b, order_cb_b, 0, 0));
236 ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));
247 ASSERT_OK(uv_timer_start(handle, zero_timeout_cb, 0, 0));
259 ASSERT_OK(uv_timer_start(&timer, zero_timeout_cb, 0, 0));
283 ASSERT_OK(uv_timer_start(&tiny_timer, tiny_timer_cb, 1, 0));
284 ASSERT_OK(uv_timer_start(&huge_timer1,
288 ASSERT_OK(uv_timer_start(&huge_timer2, tiny_timer_cb, (uint64_t) -1, 0));
316 ASSERT_OK(uv_timer_start(&tiny_timer, huge_repeat_cb, 2, 2));
317 ASSERT_OK(uv_timer_start(&huge_timer1, huge_repeat_cb, 1, (uint64_t) -1));
336 ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 0, 0));
340 ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 1, 0));
358 ASSERT_EQ(UV_EINVAL, uv_timer_start(&handle, never_cb, 100, 100));
369 ASSERT_EQ(UV_EINVAL, uv_timer_start(&handle, NULL, 100, 100));
392 ASSERT_OK(uv_timer_start(&timer_handle,
414 ASSERT_OK(uv_timer_start(&timer_handle,
431 ASSERT_OK(uv_timer_start(&timer_handle,
447 ASSERT_OK(uv_timer_start(&timer_handle, (uv_timer_cb) abort, 0, 0));