Home
last modified time | relevance | path

Searched refs:UV_RUN_NOWAIT (Results 1 – 16 of 16) sorted by relevance

/libuv/test/
H A Dtest-loop-time.c31 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
48 r = uv_run(loop, UV_RUN_NOWAIT); in TEST_IMPL()
H A Dtest-run-nowait.c40 r = uv_run(uv_default_loop(), UV_RUN_NOWAIT); in TEST_IMPL()
H A Dtest-embed.c70 ASSERT_LE(0, uv_run(loop, UV_RUN_NOWAIT)); in TEST_IMPL()
H A Dtest-loop-stop.c61 r = uv_run(uv_default_loop(), UV_RUN_NOWAIT); in TEST_IMPL()
H A Dtest-pipe-close-stdout-read-stdin.c100 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
H A Dtest-queue-foreach-delete.c191 r = uv_run(loop, UV_RUN_NOWAIT); in TEST_IMPL()
H A Dtest-fork.c194 ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
280 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
H A Dtest-poll.c699 ASSERT_NE(0, uv_run(uv_default_loop(), UV_RUN_NOWAIT));
721 ASSERT_NE(0, uv_run(uv_default_loop(), UV_RUN_NOWAIT));
H A Dtest-timer.c436 ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
/libuv/docs/code/signal/
H A Dmain.c50 while (uv_run(loop2, UV_RUN_NOWAIT) || uv_run(loop3, UV_RUN_NOWAIT)) { in thread2_worker()
/libuv/docs/src/
H A Dloop.rst41 UV_RUN_NOWAIT
130 - UV_RUN_NOWAIT: Poll for i/o once but don't block if there are no
159 This can be used in conjunction with `uv_run(loop, UV_RUN_NOWAIT)` to
H A Ddesign.rst85 * If the loop was run with the ``UV_RUN_NOWAIT`` flag, the timeout is 0.
109 #. Iteration ends. If the loop was run with ``UV_RUN_NOWAIT`` or ``UV_RUN_ONCE`` modes the
/libuv/src/win/
H A Dcore.c674 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
/libuv/docs/src/guide/
H A Dprocesses.rst155 ``uv_run(loop, UV_RUN_NOWAIT)`` is similar to ``uv_run(loop, UV_RUN_ONCE)``
157 pending events, while UV_RUN_NOWAIT will return immediately. We use NOWAIT
/libuv/src/unix/
H A Dcore.c479 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
/libuv/include/
H A Duv.h272 UV_RUN_NOWAIT enumerator

Completed in 32 milliseconds