Searched refs:uv_async_init (Results 1 – 17 of 17) sorted by relevance
/libuv/test/ |
H A D | benchmark-async.c | 89 ASSERT_OK(uv_async_init(&ctx->loop, &ctx->worker_async, worker_async_cb)); in test_async() 90 ASSERT_OK(uv_async_init(uv_default_loop(), in test_async()
|
H A D | test-async-null-cb.c | 55 ASSERT_OK(uv_async_init(uv_default_loop(), &async_handle, NULL)); in TEST_IMPL()
|
H A D | test-embed.c | 53 ASSERT_OK(uv_async_init(loop, &async, async_cb)); in TEST_IMPL()
|
H A D | test-async.c | 120 r = uv_async_init(uv_default_loop(), &async, async_cb); in TEST_IMPL()
|
H A D | benchmark-async-pummel.c | 74 ASSERT_OK(uv_async_init(uv_default_loop(), &handle, async_cb)); in test_async_pummel()
|
H A D | benchmark-million-async.c | 96 ASSERT_OK(uv_async_init(loop, handle, async_cb)); in BENCHMARK_IMPL()
|
H A D | test-ref.c | 123 uv_async_init(uv_default_loop(), &h, NULL); in TEST_IMPL()
|
H A D | benchmark-multi-accept.c | 264 ASSERT_OK(uv_async_init(&loop, &ctx->async_handle, sv_async_cb)); in server_cb()
|
/libuv/docs/src/ |
H A D | async.rst | 20 Type definition for callback passed to :c:func:`uv_async_init`. 34 .. c:function:: int uv_async_init(uv_loop_t* loop, uv_async_t* async, uv_async_cb async_cb)
|
/libuv/docs/code/progress/ |
H A D | main.c | 43 uv_async_init(loop, &async, print_progress); in main()
|
/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() function
|
H A D | core.c | 292 err = uv_async_init(loop, &loop->wq_async, uv__work_done); in uv_loop_init()
|
/libuv/src/unix/ |
H A D | loop.c | 98 err = uv_async_init(loop, &loop->wq_async, uv__work_done); in uv_loop_init()
|
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() function
|
H A D | fsevents.c | 825 uv_async_init(handle->loop, handle->cf_cb, uv__fsevents_cb); in uv__fsevents_init()
|
H A D | stream.c | 346 err = uv_async_init(stream->loop, &s->async, uv__stream_osx_select_cb); in uv__stream_try_select()
|
/libuv/include/ |
H A D | uv.h | 942 UV_EXTERN int uv_async_init(uv_loop_t*,
|
Completed in 28 milliseconds