Searched refs:UV_RUN_ONCE (Results 1 – 18 of 18) sorted by relevance
/libuv/test/ |
H A D | test-fs-poll.c | 212 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL() 236 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL() 260 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL() 279 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL() 283 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL() 287 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL()
|
H A D | test-idle.c | 114 ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 120 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-run-once.c | 43 while (uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-timer.c | 337 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 341 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 345 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 419 ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-embed.c | 60 ASSERT_LE(0, uv_run(loop, UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-timer-from-check.c | 77 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-watcher-cross-stop.c | 98 uv_run(loop, UV_RUN_ONCE); in TEST_IMPL()
|
H A D | test-pipe-set-non-blocking.c | 109 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-fork.c | 291 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 343 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 405 uv_run(&loop, UV_RUN_ONCE); in TEST_IMPL()
|
H A D | test-spawn.c | 1778 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL() 1794 if (1 == uv_run(uv_default_loop(), UV_RUN_ONCE)) in TEST_IMPL() 1796 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()
|
H A D | test-fs-event.c | 1047 uv_run(loop, UV_RUN_ONCE); in TEST_IMPL()
|
/libuv/src/win/ |
H A D | core.c | 645 if ((mode == UV_RUN_ONCE && can_sleep) || mode == UV_RUN_DEFAULT) in uv_run() 674 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
|
/libuv/docs/src/ |
H A D | loop.rst | 40 UV_RUN_ONCE, 126 - UV_RUN_ONCE: Poll for i/o once. Note that this function blocks if
|
H A D | design.rst | 109 #. Iteration ends. If the loop was run with ``UV_RUN_NOWAIT`` or ``UV_RUN_ONCE`` modes the
|
/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)`` 156 in that it will process only one event. UV_RUN_ONCE blocks if there are no
|
/libuv/src/unix/ |
H A D | core.c | 453 if ((mode == UV_RUN_ONCE && can_sleep) || mode == UV_RUN_DEFAULT) in uv_run() 479 if (mode == UV_RUN_ONCE || mode == UV_RUN_NOWAIT) in uv_run()
|
/libuv/include/ |
H A D | uv.h | 271 UV_RUN_ONCE, enumerator
|
/libuv/ |
H A D | ChangeLog | 850 * unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (Ben Noordhuis) 4666 * unix, windows: fix UV_RUN_ONCE mode if progress was made (Saúl Ibarra
|
Completed in 46 milliseconds