Searched refs:UV_RUN_NOWAIT (Results 1 – 16 of 16) sorted by relevance
/libuv/test/ |
H A D | test-loop-time.c | 31 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 D | test-run-nowait.c | 40 r = uv_run(uv_default_loop(), UV_RUN_NOWAIT); in TEST_IMPL()
|
H A D | test-embed.c | 70 ASSERT_LE(0, uv_run(loop, UV_RUN_NOWAIT)); in TEST_IMPL()
|
H A D | test-loop-stop.c | 61 r = uv_run(uv_default_loop(), UV_RUN_NOWAIT); in TEST_IMPL()
|
H A D | test-pipe-close-stdout-read-stdin.c | 100 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
|
H A D | test-queue-foreach-delete.c | 191 r = uv_run(loop, UV_RUN_NOWAIT); in TEST_IMPL()
|
H A D | test-fork.c | 194 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 D | test-poll.c | 699 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 D | test-timer.c | 436 ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_NOWAIT)); in TEST_IMPL()
|
/libuv/docs/code/signal/ |
H A D | main.c | 50 while (uv_run(loop2, UV_RUN_NOWAIT) || uv_run(loop3, UV_RUN_NOWAIT)) { in thread2_worker()
|
/libuv/docs/src/ |
H A D | loop.rst | 41 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 D | design.rst | 85 * 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 D | core.c | 674 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 155 ``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 D | core.c | 479 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
|
/libuv/include/ |
H A D | uv.h | 272 UV_RUN_NOWAIT enumerator
|
Completed in 32 milliseconds