Home
last modified time | relevance | path

Searched refs:async_cb (Results 1 – 10 of 10) sorted by relevance

/libuv/src/win/
H A Dasync.c40 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() argument
45 handle->async_cb = async_cb; in uv_async_init()
95 } else if (handle->async_cb != NULL) { in uv__process_async_wakeup_req()
96 handle->async_cb(handle); in uv__process_async_wakeup_req()
/libuv/test/
H A Dtest-embed.c43 static void async_cb(uv_async_t* handle) { in async_cb() function
53 ASSERT_OK(uv_async_init(loop, &async, async_cb)); in TEST_IMPL()
H A Dtest-async.c78 static void async_cb(uv_async_t* handle) { in async_cb() function
120 r = uv_async_init(uv_default_loop(), &async, async_cb); in TEST_IMPL()
H A Dbenchmark-async-pummel.c39 static void async_cb(uv_async_t* handle) { in async_cb() function
74 ASSERT_OK(uv_async_init(uv_default_loop(), &handle, async_cb)); in test_async_pummel()
H A Dbenchmark-million-async.c53 static void async_cb(uv_async_t* handle) { in async_cb() function
96 ASSERT_OK(uv_async_init(loop, handle, async_cb)); in BENCHMARK_IMPL()
/libuv/src/unix/
H A Dasync.c74 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() argument
82 handle->async_cb = async_cb; in uv_async_init()
209 if (h->async_cb == NULL)
212 h->async_cb(h);
/libuv/docs/src/
H A Dasync.rst34 .. c:function:: int uv_async_init(uv_loop_t* loop, uv_async_t* async, uv_async_cb async_cb)
/libuv/include/uv/
H A Dunix.h325 uv_async_cb async_cb; \
H A Dwin.h565 uv_async_cb async_cb; \
/libuv/include/
H A Duv.h943 uv_async_cb async_cb);

Completed in 24 milliseconds