Home
last modified time | relevance | path

Searched refs:uv_queue_work (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/mit/libuv/dist/docs/src/
H A Dthreadpool.rst18 function makes use of the threadpool (i.e. when using :c:func:`uv_queue_work`)
37 Callback passed to :c:func:`uv_queue_work` which will be run on the thread
42 Callback passed to :c:func:`uv_queue_work` which will be called on the loop
61 .. c:function:: int uv_queue_work(uv_loop_t* loop, uv_work_t* req, uv_work_cb work_cb, uv_after_wor…
H A Ddesign.rst136 * User specified code via :c:func:`uv_queue_work`
/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-threadpool.c50 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb); in TEST_IMPL()
66 r = uv_queue_work(uv_default_loop(), &work_req, NULL, after_work_cb); in TEST_IMPL()
H A Dbenchmark-queue-work.c43 ASSERT_EQ(0, uv_queue_work(req->loop, req, work_cb, after_work_cb)); in after_work_cb()
60 ASSERT_EQ(0, uv_queue_work(loop, &work, work_cb, after_work_cb)); in BENCHMARK_IMPL()
H A Dtest-threadpool-cancel.c77 ASSERT(0 == uv_queue_work(loop, pause_reqs + i, work_cb, done_cb)); in saturate_threadpool()
267 ASSERT(0 == uv_queue_work(loop, reqs + i, work2_cb, done2_cb)); in TEST_IMPL()
340 ASSERT(0 == uv_queue_work(loop, &req, (uv_work_cb) abort, nop_done_cb)); in TEST_IMPL()
H A Dtest-loop-alive.c58 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb); in TEST_IMPL()
H A Dtest-loop-close.c69 ASSERT(0 == uv_queue_work(&loop, in TEST_IMPL()
H A Dtest-fork.c628 r = uv_queue_work(loop, &work_req, work_cb, after_work_cb); in assert_run_work()
/netbsd-src/external/mit/libuv/dist/docs/code/progress/
H A Dmain.c44 uv_queue_work(loop, &req, fake_download, after); in main()
/netbsd-src/external/mit/libuv/dist/docs/code/queue-work/
H A Dmain.c40 uv_queue_work(loop, &req[i], fib, after_fib); in main()
/netbsd-src/external/mit/libuv/dist/docs/code/queue-cancel/
H A Dmain.c51 uv_queue_work(loop, &fib_reqs[i], fib, after_fib); in main()
/netbsd-src/external/mit/libuv/dist/docs/src/guide/
H A Dthreads.rst191 ``uv_queue_work()`` is a convenience function that allows an application to run
193 task is done. A seemingly simple function, what makes ``uv_queue_work()``
224 The trigger is ``uv_queue_work``:
297 a separate thread (perhaps using ``uv_queue_work``) but want to notify progress
385 blocking, so the binding uses ``uv_queue_work``.
H A Dutilities.rst137 When using ``uv_queue_work`` you'll usually need to pass complex data through
165 uv_queue_work(loop, &baton->req, ftp_session, ftp_cleanup);
/netbsd-src/external/mit/libuv/dist/src/
H A Dthreadpool.c343 int uv_queue_work(uv_loop_t* loop, in uv_queue_work() function
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/
H A Dnetmgr.c3223 r = uv_queue_work(&worker->loop, &work->req, isc__nm_work_cb, in isc_nm_work_offload()
3225 UV_RUNTIME_CHECK(uv_queue_work, r); in isc_nm_work_offload()
/netbsd-src/external/mit/libuv/dist/include/
H A Duv.h1098 UV_EXTERN int uv_queue_work(uv_loop_t* loop,
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/
H A Dnetmgr.c
/netbsd-src/external/mit/libuv/dist/
H A DChangeLog196 * bench: add `uv_queue_work` ping-pong measurement (Momtchil Momtchev)