Searched refs:uv_timer_start (Results 1 - 25 of 55) sorted by relevance

123

/netbsd-current/external/mit/libuv/dist/docs/code/ref-timer/
H A Dmain.c23 uv_timer_start(&gc_req, gc, 0, 2000);
27 uv_timer_start(&fake_job_req, fake_job, 9000, 0);
/netbsd-current/external/mit/libuv/dist/test/
H A Dtest-run-nowait.c38 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-timer.c128 r = uv_timer_start(once, once_cb, i * 50, 0);
135 r = uv_timer_start(&repeat, repeat_cb, 100, 100);
141 r = uv_timer_start(&never, never_cb, 100, 100);
168 r = uv_timer_start(&once, never_cb, 86400 * 1000, 0);
170 r = uv_timer_start(&once, twice_cb, 10, 0);
218 ASSERT(0 == uv_timer_start(&handle_a, order_cb_a, 0, 0));
220 ASSERT(0 == uv_timer_start(&handle_b, order_cb_b, 0, 0));
231 ASSERT(0 == uv_timer_start(&handle_b, order_cb_b, 0, 0));
234 ASSERT(0 == uv_timer_start(&handle_a, order_cb_a, 0, 0));
256 ASSERT(0 == uv_timer_start(
[all...]
H A Dtest-close-order.c64 uv_timer_start(&timer_handle1, timer_cb, 0, 0);
66 uv_timer_start(&timer_handle2, timer_cb, 100000, 0);
H A Dtest-default-loop-close.c43 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 1, 0));
52 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 1, 0));
H A Dtest-metrics.c50 ASSERT_EQ(0, uv_timer_start(&timer, timer_spin_cb, timeout, 0));
79 ASSERT_EQ(0, uv_timer_start(&timer, timer_spin_cb, timeout, 0));
126 ASSERT_EQ(0, uv_timer_start(&timer, timer_noop_cb, 0, 0));
H A Dtest-loop-configure.c34 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 10, 0));
H A Dtest-tcp-close-while-connecting.c82 ASSERT(0 == uv_timer_start(&timer1_handle, timer1_cb, 1, 0));
84 ASSERT(0 == uv_timer_start(&timer2_handle, timer2_cb, 86400 * 1000, 0));
H A Dtest-timer-from-check.c55 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 50, 0));
69 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 50, 0));
H A Dtest-active.c54 r = uv_timer_start(&timer, timer_cb, 1000, 0);
66 r = uv_timer_start(&timer, timer_cb, 1000, 0);
H A Dtest-loop-alive.c50 uv_timer_start(&timer_handle, timer_cb, 100, 0);
H A Dtest-loop-stop.c55 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-walk-handles.c61 r = uv_timer_start(&timer, timer_cb, 1, 0);
H A Dtest-loop-time.c59 r = uv_timer_start(&timer, cb, 1000, 0); /* 1 sec */
H A Dbenchmark-queue-work.c58 ASSERT_EQ(0, uv_timer_start(&timer_handle, timer_cb, timeout, 0));
H A Dtest-timer-again.c111 r = uv_timer_start(&repeat_1, repeat_1_cb, 50, 0);
125 r = uv_timer_start(&repeat_2, repeat_2_cb, 100, 100);
H A Dtest-tcp-connect-timeout.c72 r = uv_timer_start(&timer, timer_cb, 50, 0);
139 r = uv_timer_start(&timer, timer_cb, 1000, 0);
177 r = uv_timer_start(&timer, timer_cb, 1000, 0);
H A Dtest-fs-event.c166 ASSERT(0 == uv_timer_start(&timer,
195 ASSERT(0 == uv_timer_start(&timer, fs_event_unlink_files, 1, 0));
217 ASSERT(0 == uv_timer_start(&timer, fs_event_unlink_files, 1, 0));
245 ASSERT(0 == uv_timer_start(&timer, fs_event_create_files_in_subdir, 1, 0));
271 ASSERT(0 == uv_timer_start(&timer, fs_event_unlink_files_in_subdir, 1, 0));
312 ASSERT(0 == uv_timer_start(&timer, fs_event_unlink_files_in_subdir, 1, 0));
430 r = uv_timer_start(&timer, fs_event_create_files, 100, 0);
474 r = uv_timer_start(&timer, fs_event_create_files_in_subdir, 100, 0);
539 r = uv_timer_start(&timer, timer_cb_file, 100, 0);
585 r = uv_timer_start(
[all...]
H A Dbenchmark-loop-count.c83 uv_timer_start(&timer_handle, timer_cb, 5000, 0);
H A Dtest-loop-close.c42 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-tcp-read-stop.c54 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 50, 0));
H A Dbenchmark-million-timers.c61 ASSERT(0 == uv_timer_start(timers + i, timer_cb, timeout, 0));
/netbsd-current/external/mit/libuv/dist/docs/code/tty-gravity/
H A Dmain.c46 uv_timer_start(&tick, update, 200, 200);
/netbsd-current/external/mpl/bind/dist/lib/isc/netmgr/
H A Dtimer.c114 int r = uv_timer_start(&timer->timer, timer_cb, timeout, 0);
115 UV_RUNTIME_CHECK(uv_timer_start, r);
/netbsd-current/external/mit/libuv/dist/src/
H A Dtimer.c52 * allocated with loop->timer_counter in uv_timer_start().
67 int uv_timer_start(uv_timer_t* handle, function
117 uv_timer_start(handle, handle->timer_cb, handle->repeat, handle->repeat);

Completed in 192 milliseconds

123