Searched refs:uv_cancel (Results 1 – 11 of 11) sorted by relevance
44 was cancelled using :c:func:`uv_cancel` `status` will be ``UV_ECANCELED``.67 This request can be cancelled with :c:func:`uv_cancel`.
64 .. c:function:: int uv_cancel(uv_req_t* req)
50 return uv_cancel(reinterpret_cast<uv_req_t*>(&work_req_)); in CancelWork()
50 uv_cancel(reinterpret_cast<uv_req_t*>(&req_)); in Cancel()
136 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()
38 uv_cancel((uv_req_t*) &fib_reqs[i]); in signal_handler()
241 Since libuv version `0.9.4` an additional function, ``uv_cancel()``, is244 executing, or it has finished executing*, ``uv_cancel()`` **will fail**.246 ``uv_cancel()`` is useful to cleanup pending tasks if the user requests251 Let's modify the fibonacci example to demonstrate ``uv_cancel()``. We first set261 ``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``
363 int uv_cancel(uv_req_t* req) { in uv_cancel() function
1089 UV_EXTERN int uv_cancel(uv_req_t* req);
1103 UV_EXTERN int uv_cancel(uv_req_t* req);
618 * doc: uv_cancel() handles uv_random_t requests (Philip Chimento)