Home
last modified time | relevance | path

Searched refs:uv_async_init (Results 1 – 25 of 36) sorted by relevance

12

/third_party/libuv/test/
Dbenchmark-async.c88 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()
Dtest-async-null-cb.c55 ASSERT(0 == uv_async_init(uv_default_loop(), &async_handle, NULL)); in TEST_IMPL()
Dtest-async.c120 r = uv_async_init(uv_default_loop(), &async, async_cb); in TEST_IMPL()
Dtest-embed.c119 uv_async_init(&external, &embed_async, embed_cb); in TEST_IMPL()
Dbenchmark-async-pummel.c73 ASSERT(0 == uv_async_init(uv_default_loop(), &handle, async_cb)); in test_async_pummel()
Dbenchmark-million-async.c95 ASSERT(0 == uv_async_init(loop, handle, async_cb)); in BENCHMARK_IMPL()
Dtest-ref.c123 uv_async_init(uv_default_loop(), &h, NULL); in TEST_IMPL()
Dbenchmark-multi-accept.c264 ASSERT(0 == uv_async_init(&loop, &ctx->async_handle, sv_async_cb)); in server_cb()
/third_party/libuv/docs/src/
Dasync.rst20 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)
/third_party/node/src/tracing/
Dnode_trace_buffer.cc106 int err = uv_async_init(tracing_loop_, &flush_signal_, in NodeTraceBuffer()
111 err = uv_async_init(tracing_loop_, &exit_signal_, ExitSignalCb); in NodeTraceBuffer()
Dnode_trace_writer.cc19 int err = uv_async_init(tracing_loop_, &flush_signal_, in InitializeOnThread()
28 err = uv_async_init(tracing_loop_, &exit_signal_, ExitSignalCb); in InitializeOnThread()
Dagent.cc56 CHECK_EQ(uv_async_init(&tracing_loop_, in Agent()
/third_party/libuv/docs/code/progress/
Dmain.c43 uv_async_init(loop, &async, print_progress); in main()
/third_party/node/test/addons/worker-addon/
Dbinding.cc50 int err = uv_async_init(loop, &extra_async, [](uv_async_t*) {}); in Initialize()
/third_party/libuv/src/win/
Dasync.c40 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() function
Dcore.c292 err = uv_async_init(loop, &loop->wq_async, uv__work_done); in uv_loop_init()
/third_party/node/test/node-api/test_async_cleanup_hook/
Dbinding.c39 int err = uv_async_init(loop, &data->async, AfterCleanupHookOne); in AsyncCleanupHook()
/third_party/node/test/addons/async-cleanup-hook/
Dbinding.cc21 int err = uv_async_init(loop, &data->async, [](uv_async_t* async) { in AsyncCleanupHook()
/third_party/node/src/
Dnode_watchdog.cc51 rc = uv_async_init(&loop_, &async_, [](uv_async_t* signal) { in Watchdog()
166 int r = uv_async_init(env->event_loop(), &handle_, [](uv_async_t* handle) { in TraceSigintWatchdog()
Dnode_win32_etw_provider.cc180 CHECK_EQ(0, uv_async_init(uv_default_loop(), in init_etw()
Dnode_platform.cc85 CHECK_EQ(0, uv_async_init(&loop_, &flush_tasks_, FlushTasks)); in Run()
226 CHECK_EQ(0, uv_async_init(loop, flush_tasks_, FlushTasks)); in PerIsolatePlatformData()
Dinspector_io.cc103 int err = uv_async_init(loop, &async_, [](uv_async_t* async) { in RequestQueueData()
/third_party/libuv/src/unix/
Dasync.c45 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() function
Dloop.c98 err = uv_async_init(loop, &loop->wq_async, uv__work_done); in uv_loop_init()
/third_party/node/test/cctest/
Dtest_environment.cc466 int err = uv_async_init( in TEST_F()

12