Searched refs:uv_stop (Results 1 – 11 of 11) sorted by relevance
13 ``uv_stop()`` can be used to stop an event loop. The earliest the loop will16 processed, so ``uv_stop()`` can't be used as a kill switch. When ``uv_stop()``28 ``stop_flag`` is set by ``uv_stop()``. Now all libuv callbacks are invoked29 within the event loop, which is why invoking ``uv_stop()`` in them will still32 callbacks. If you were to call ``uv_stop()`` in any of them, ``stop_flag``35 ``uv_stop()`` in one of the check handlers, I/O has already finished and is not38 ``uv_stop()`` is useful to shutdown a loop when a result has been computed or
44 uv_stop(uv_default_loop()); in timer_cb()78 uv_stop(uv_default_loop()); in TEST_IMPL()
58 uv_stop(server->loop); in connection_cb()67 uv_stop(connect_req->handle->loop); in connect_cb()
29 uv_stop(handle->loop); in timer_cb()
39 uv_stop(signal->loop); in stop_loop_cb()
248 uv_stop(handle->loop); in zero_timeout_cb()
11 uv_stop(uv_default_loop()); in idle_cb()
123 referenced handles or requests. Returns non-zero if :c:func:`uv_stop`142 .. c:function:: void uv_stop(uv_loop_t* loop)
86 * If the loop is going to be stopped (:c:func:`uv_stop` was called), the timeout is 0.
614 void uv_stop(uv_loop_t* loop) { in uv_stop() function
312 UV_EXTERN void uv_stop(uv_loop_t*);
Completed in 40 milliseconds