Home
last modified time | relevance | path

Searched refs:uv_cancel (Results 1 – 11 of 11) sorted by relevance

/third_party/libuv/docs/src/
Dthreadpool.rst44 was cancelled using :c:func:`uv_cancel` `status` will be ``UV_ECANCELED``.
67 This request can be cancelled with :c:func:`uv_cancel`.
Drequest.rst64 .. c:function:: int uv_cancel(uv_req_t* req)
/third_party/node/src/
Dthreadpoolwork-inl.h50 return uv_cancel(reinterpret_cast<uv_req_t*>(&work_req_)); in CancelWork()
Dreq_wrap-inl.h50 uv_cancel(reinterpret_cast<uv_req_t*>(&req_)); in Cancel()
/third_party/libuv/test/
Dtest-threadpool-cancel.c136 ASSERT(0 == uv_cancel(req)); in timer_cb()
245 ASSERT(0 == uv_cancel((uv_req_t*) &req)); in TEST_IMPL()
341 ASSERT(0 == uv_cancel((uv_req_t*) &req)); in TEST_IMPL()
/third_party/libuv/docs/code/queue-cancel/
Dmain.c38 uv_cancel((uv_req_t*) &fib_reqs[i]); in signal_handler()
/third_party/libuv/docs/src/guide/
Dthreads.rst241 Since libuv version `0.9.4` an additional function, ``uv_cancel()``, is
244 executing, or it has finished executing*, ``uv_cancel()`` **will fail**.
246 ``uv_cancel()`` is useful to cleanup pending tasks if the user requests
251 Let's modify the fibonacci example to demonstrate ``uv_cancel()``. We first set
261 ``uv_cancel()`` to all the workers. ``uv_cancel()`` will return ``0`` for those that are already ex…
280 ``uv_cancel()`` can also be used with ``uv_fs_t`` and ``uv_getaddrinfo_t``
/third_party/libuv/src/
Dthreadpool.c363 int uv_cancel(uv_req_t* req) { in uv_cancel() function
/third_party/libuv/include/uv_ndk/
Duv.h1089 UV_EXTERN int uv_cancel(uv_req_t* req);
/third_party/libuv/include/
Duv.h1103 UV_EXTERN int uv_cancel(uv_req_t* req);
/third_party/libuv/
DChangeLog618 * doc: uv_cancel() handles uv_random_t requests (Philip Chimento)