Searched refs:async_cb (Results 1 – 10 of 10) sorted by relevance
/libuv/src/win/ |
H A D | async.c | 40 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 D | test-embed.c | 43 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 D | test-async.c | 78 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 D | benchmark-async-pummel.c | 39 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 D | benchmark-million-async.c | 53 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 D | async.c | 74 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() 205 if (h->async_cb == NULL) 208 h->async_cb(h);
|
/libuv/docs/src/ |
H A D | async.rst | 34 .. c:function:: int uv_async_init(uv_loop_t* loop, uv_async_t* async, uv_async_cb async_cb)
|
/libuv/include/uv/ |
H A D | unix.h | 325 uv_async_cb async_cb; \
|
H A D | win.h | 565 uv_async_cb async_cb; \
|
/libuv/include/ |
H A D | uv.h | 944 uv_async_cb async_cb);
|
Completed in 18 milliseconds