HomeSort by: relevance | last modified time | path
    Searched refs:uv_async_init (Results 1 - 19 of 19) sorted by relevancy

  /src/external/mit/libuv/dist/docs/code/progress/
main.c 43 uv_async_init(loop, &async, print_progress);
  /src/external/mit/libuv/dist/test/
test-async-null-cb.c 49 * uv_async_init() should properly initialize struct fields regardless of
55 ASSERT_OK(uv_async_init(uv_default_loop(), &async_handle, NULL));
benchmark-async.c 88 ASSERT(0 == uv_async_init(&ctx->loop, &ctx->worker_async, worker_async_cb));
89 ASSERT(0 == uv_async_init(uv_default_loop(),
benchmark-async-pummel.c 73 ASSERT(0 == uv_async_init(uv_default_loop(), &handle, async_cb));
test-async.c 120 r = uv_async_init(uv_default_loop(), &async, async_cb);
test-embed.c 53 ASSERT_OK(uv_async_init(loop, &async, async_cb));
benchmark-million-async.c 95 ASSERT(0 == uv_async_init(loop, handle, async_cb));
benchmark-multi-accept.c 264 ASSERT(0 == uv_async_init(&loop, &ctx->async_handle, sv_async_cb));
test-ref.c 123 uv_async_init(uv_default_loop(), &h, NULL);
  /src/external/mpl/bind/dist/lib/isc/include/isc/
uv.h 95 #define uv_async_init(loop, async, async_cb) \ macro
97 int __r = uv_async_init(loop, async, async_cb); \
  /src/external/mit/libuv/dist/src/win/
async.c 40 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { function
core.c 292 err = uv_async_init(loop, &loop->wq_async, uv__work_done);
  /src/external/mpl/bind/dist/lib/isc/
loop.c 220 r = uv_async_init(&loop->loop, &loop->pause_trigger, pauseresume_cb);
221 UV_RUNTIME_CHECK(uv_async_init, r);
224 r = uv_async_init(&loop->loop, &loop->shutdown_trigger, shutdown_cb);
225 UV_RUNTIME_CHECK(uv_async_init, r);
228 r = uv_async_init(&loop->loop, &loop->async_trigger, isc__async_cb);
229 UV_RUNTIME_CHECK(uv_async_init, r);
236 r = uv_async_init(&loop->loop, &loop->destroy_trigger, destroy_cb);
237 UV_RUNTIME_CHECK(uv_async_init, r);
  /src/external/mit/libuv/dist/src/unix/
loop.c 97 err = uv_async_init(loop, &loop->wq_async, uv__work_done);
async.c 74 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { function
fsevents.c 825 uv_async_init(handle->loop, handle->cf_cb, uv__fsevents_cb);
stream.c 346 err = uv_async_init(stream->loop, &s->async, uv__stream_osx_select_cb);
  /src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/
netmgr.c 343 r = uv_async_init(&worker->loop, &worker->async, async_cb);
344 UV_RUNTIME_CHECK(uv_async_init, r);
  /src/external/mit/libuv/dist/include/
uv.h 954 UV_EXTERN int uv_async_init(uv_loop_t*,

Completed in 33 milliseconds