Searched refs:timer_cb (Results 1 - 25 of 44) sorted by relevance

12

/netbsd-current/external/mit/libuv/dist/test/
H A Dtest-run-nowait.c29 static void timer_cb(uv_timer_t* handle) { function
38 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-close-order.c51 static void timer_cb(uv_timer_t* handle) { function
64 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.c29 static void timer_cb(uv_timer_t* timer) { function
43 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-loop-configure.c19 static void timer_cb(uv_timer_t* handle) { function
34 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 10, 0));
H A Dtest-loop-alive.c27 static void timer_cb(uv_timer_t* handle) { function
50 uv_timer_start(&timer_handle, timer_cb, 100, 0);
H A Dtest-loop-stop.c40 static void timer_cb(uv_timer_t* handle) { function
55 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-walk-handles.c44 static void timer_cb(uv_timer_t* handle) { function
61 r = uv_timer_start(&timer, timer_cb, 1, 0);
H A Dbenchmark-queue-work.c46 static void timer_cb(uv_timer_t* handle) { done = 1; } function
58 ASSERT_EQ(0, uv_timer_start(&timer_handle, timer_cb, timeout, 0));
H A Dtest-timer-from-check.c43 static void timer_cb(uv_timer_t* handle) { function
54 ASSERT(0 == uv_timer_stop(&timer_handle)); /* Runs before timer_cb. */
55 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.c38 static void timer_cb(uv_timer_t* handle) { function
39 ASSERT(0 && "timer_cb should not have been called");
54 r = uv_timer_start(&timer, timer_cb, 1000, 0);
66 r = uv_timer_start(&timer, timer_cb, 1000, 0);
H A Dbenchmark-loop-count.c46 static void timer_cb(uv_timer_t* handle) { function
83 uv_timer_start(&timer_handle, timer_cb, 5000, 0);
H A Dtest-loop-close.c27 static void timer_cb(uv_timer_t* handle) { function
42 uv_timer_start(&timer_handle, timer_cb, 100, 100);
H A Dtest-tcp-read-stop.c41 static void timer_cb(uv_timer_t* handle) { function
54 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 50, 0));
H A Dbenchmark-million-timers.c31 static void timer_cb(uv_timer_t* handle) { function
61 ASSERT(0 == uv_timer_start(timers + i, timer_cb, timeout, 0));
H A Dtest-tcp-connect-timeout.c36 static void timer_cb(uv_timer_t* handle);
47 static void timer_cb(uv_timer_t* handle) { function
72 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-connection-fail.c49 static void timer_cb(uv_timer_t* handle) { function
82 uv_timer_start(&timer, timer_cb, 100, 0);
H A Dtest-idle.c41 static void timer_cb(uv_timer_t* handle) { function
49 fprintf(stderr, "timer_cb %d\n", timer_cb_called);
87 r = uv_timer_start(&timer_handle, timer_cb, 50, 0);
H A Dbenchmark-million-async.c59 static void timer_cb(uv_timer_t* handle) { function
100 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, timeout, 0));
H A Dtest-tcp-shutdown-after-write.c61 static void timer_cb(uv_timer_t* handle) { function
115 r = uv_timer_start(&timer, timer_cb, 125, 0);
H A Dtest-tcp-unexpected-read.c41 static void timer_cb(uv_timer_t* handle) { function
95 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 1000, 0));
H A Dtest-tcp-write-queue-order.c49 static void timer_cb(uv_timer_t* handle) { function
93 ASSERT(0 == uv_timer_start(&timer, timer_cb, 1000, 0));
H A Dtest-callback-stack.c107 static void timer_cb(uv_timer_t* handle) { function
109 ASSERT(nested == 0 && "timer_cb must be called from a fresh stack");
140 r = uv_timer_start(&timer, timer_cb, 500, 0);
197 ASSERT(timer_cb_called == 1 && "timer_cb must be called exactly once");
/netbsd-current/external/mit/libuv/dist/src/
H A Dtimer.c60 handle->timer_cb = NULL;
83 handle->timer_cb = cb;
112 if (handle->timer_cb == NULL)
117 uv_timer_start(handle, handle->timer_cb, handle->repeat, handle->repeat);
178 handle->timer_cb(handle);
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/
H A Ddtlstest.c45 static unsigned int timer_cb(SSL *s, unsigned int timer_us) function
82 DTLS_set_timer_cb(clientssl1, timer_cb);
204 DTLS_set_timer_cb(clientssl, timer_cb);
205 DTLS_set_timer_cb(serverssl, timer_cb);
312 DTLS_set_timer_cb(clientssl, timer_cb);
313 DTLS_set_timer_cb(serverssl, timer_cb);
/netbsd-current/external/mpl/bind/dist/lib/isc/netmgr/
H A Dtimer.c104 timer_cb(uv_timer_t *uvtimer) { function
114 int r = uv_timer_start(&timer->timer, timer_cb, timeout, 0);

Completed in 146 milliseconds

12