/netbsd-src/external/mit/libuv/dist/test/ |
H A D | benchmark-async.c | 88 ASSERT(0 == uv_async_init(&ctx->loop, &ctx->worker_async, worker_async_cb)); in test_async() 89 ASSERT(0 == uv_async_init(uv_default_loop(), in test_async()
|
H A D | test-async-null-cb.c | 55 ASSERT(0 == uv_async_init(uv_default_loop(), &async_handle, NULL)); in TEST_IMPL()
|
H A D | test-embed.c | 53 ASSERT_EQ(0, 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 | 73 ASSERT(0 == uv_async_init(uv_default_loop(), &handle, async_cb)); in test_async_pummel()
|
H A D | benchmark-million-async.c | 95 ASSERT(0 == 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(0 == uv_async_init(&loop, &ctx->async_handle, sv_async_cb)); in server_cb()
|
/netbsd-src/external/mit/libuv/dist/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)
|
/netbsd-src/external/mit/libuv/dist/docs/code/progress/ |
H A D | main.c | 43 uv_async_init(loop, &async, print_progress); in main()
|
/netbsd-src/external/mit/libuv/dist/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()
|
/netbsd-src/external/mit/libuv/dist/src/unix/ |
H A D | async.c | 45 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 | loop.c | 98 err = uv_async_init(loop, &loop->wq_async, uv__work_done); in uv_loop_init()
|
H A D | fsevents.c | 835 uv_async_init(handle->loop, handle->cf_cb, uv__fsevents_cb); in uv__fsevents_init()
|
H A D | stream.c | 336 err = uv_async_init(stream->loop, &s->async, uv__stream_osx_select_cb); in uv__stream_try_select()
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/ |
H A D | netmgr.c | 343 r = uv_async_init(&worker->loop, &worker->async, async_cb); in isc__netmgr_create() 344 UV_RUNTIME_CHECK(uv_async_init, r); in isc__netmgr_create()
|
/netbsd-src/external/mit/libuv/dist/include/ |
H A D | uv.h | 870 UV_EXTERN int uv_async_init(uv_loop_t*,
|
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/ |
H A D | netmgr.c |
|