HomeSort by: relevance | last modified time | path
    Searched defs:timer_cb (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/external/mit/libuv/dist/test/
test-loop-configure.c 19 static void timer_cb(uv_timer_t* handle) { function
34 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 10, 0));
test-default-loop-close.c 29 static void timer_cb(uv_timer_t* timer) { function
43 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 1, 0));
52 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 1, 0));
test-run-nowait.c 29 static void timer_cb(uv_timer_t* handle) { function
38 uv_timer_start(&timer_handle, timer_cb, 100, 100);
test-active.c 38 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);
test-loop-alive.c 27 static void timer_cb(uv_timer_t* handle) { function
50 uv_timer_start(&timer_handle, timer_cb, 100, 0);
benchmark-loop-count.c 46 static void timer_cb(uv_timer_t* handle) { function
83 uv_timer_start(&timer_handle, timer_cb, 5000, 0);
test-loop-close.c 27 static void timer_cb(uv_timer_t* handle) { function
42 uv_timer_start(&timer_handle, timer_cb, 100, 100);
test-loop-stop.c 40 static void timer_cb(uv_timer_t* handle) { function
55 uv_timer_start(&timer_handle, timer_cb, 100, 100);
test-timer-from-check.c 43 static void timer_cb(uv_timer_t* handle) { function
54 ASSERT_OK(uv_timer_stop(&timer_handle)); /* Runs before timer_cb. */
55 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 50, 0));
69 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 50, 0));
test-walk-handles.c 44 static void timer_cb(uv_timer_t* handle) { function
61 r = uv_timer_start(&timer, timer_cb, 1, 0);
benchmark-million-timers.c 31 static void timer_cb(uv_timer_t* handle) { function
61 ASSERT(0 == uv_timer_start(timers + i, timer_cb, timeout, 0));
benchmark-queue-work.c 46 static void timer_cb(uv_timer_t* handle) { done = 1; } function
58 ASSERT_EQ(0, uv_timer_start(&timer_handle, timer_cb, timeout, 0));
test-close-order.c 51 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);
test-idle.c 41 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);
test-tcp-read-stop.c 41 static void timer_cb(uv_timer_t* handle) { function
54 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 50, 0));
benchmark-million-async.c 59 static void timer_cb(uv_timer_t* handle) { function
100 ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, timeout, 0));
test-connection-fail.c 49 static void timer_cb(uv_timer_t* handle) { function
82 uv_timer_start(&timer, timer_cb, 100, 0);
test-fs-poll.c 29 static void timer_cb(uv_timer_t* handle);
78 static void timer_cb(uv_timer_t* handle) { function
123 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 20, 0));
130 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 200, 0));
test-tcp-connect-timeout.c 36 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);
test-tcp-unexpected-read.c 41 static void timer_cb(uv_timer_t* handle) { function
95 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 1000, 0));
test-callback-stack.c 107 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);
199 ASSERT_NE(timer_cb_called == 1 && "timer_cb must be called exactly once",
test-shutdown-eof.c 132 static void timer_cb(uv_timer_t* handle) { function
163 uv_timer_start(&timer, timer_cb, 100, 0);
test-signal.c 123 static void timer_cb(uv_timer_t* handle) { function
152 ASSERT_OK(uv_timer_start(&ctx->handle, timer_cb, 5, 5));
test-tcp-shutdown-after-write.c 61 static void timer_cb(uv_timer_t* handle) { function
115 r = uv_timer_start(&timer, timer_cb, 125, 0);
  /src/external/mpl/bind/dist/lib/isc/netmgr/
timer.c 100 timer_cb(uv_timer_t *uvtimer) { function
110 int r = uv_timer_start(&timer->timer, timer_cb, timeout, 0);

Completed in 29 milliseconds

1 2