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

  /src/external/mit/libuv/dist/test/
test-timer.c 210 uv_timer_t handle_a; local
215 ASSERT_OK(uv_timer_init(uv_default_loop(), &handle_a));
218 /* Test for starting handle_a then handle_b */
219 handle_a.data = &first;
220 ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));
227 ASSERT_OK(uv_timer_stop(&handle_a));
230 /* Test for starting handle_b then handle_a */
235 handle_a.data = &second;
236 ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));

Completed in 22 milliseconds