Searched refs:interval (Results 1 – 10 of 10) sorted by relevance
/libuv/src/ |
H A D | fs-poll.c | 40 unsigned int interval; member 69 unsigned int interval) { in uv_fs_poll_start() argument 87 ctx->interval = interval ? interval : 1; in uv_fs_poll_start() 188 uint64_t interval; in poll_cb() local 226 interval = ctx->interval; in poll_cb() 227 interval -= (uv_now(ctx->loop) - ctx->start_time) % interval; in poll_cb() 229 if (uv_timer_start(&ctx->timer_handle, timer_cb, interval, 0)) in poll_cb()
|
/libuv/.github/ |
H A D | dependabot.yml | 7 interval: "weekly"
|
/libuv/docs/src/ |
H A D | fs_poll.rst | 49 …fs_poll_start(uv_fs_poll_t* handle, uv_fs_poll_cb poll_cb, const char* path, unsigned int interval) 51 Check the file at `path` for changes every `interval` milliseconds.
|
H A D | timer.rst | 62 Set the repeat interval value in milliseconds. The timer will be scheduled 63 to run on the given interval, regardless of the callback execution
|
H A D | fs_event.rst | 81 * regular interval.
|
H A D | tcp.rst | 168 setting the `SO_LINGER` socket option with a linger interval of zero and
|
/libuv/src/unix/ |
H A D | thread.c | 480 mach_timespec_t interval; in uv_sem_trywait() local 483 interval.tv_sec = 0; in uv_sem_trywait() 484 interval.tv_nsec = 0; in uv_sem_trywait() 486 err = semaphore_timedwait(*sem, interval); in uv_sem_trywait()
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 35 The repeat interval can be modified at any time with:: 45 the old repeat interval will be used once more before the timer switches to 46 the new interval. 76 The latter can be used with interval timers. You might have a garbage collector 230 interval, after which we should drive libcurl forward regardless of I/O status. 286 in the interval. Then depending on what event triggered the callback, we set
|
/libuv/test/ |
H A D | test-fs.c | 3744 int interval; member 3760 nbytes = size < ctx->interval ? size : ctx->interval; in thread_main() 3814 ctx.interval = 1000; in test_fs_partial()
|
/libuv/include/ |
H A D | uv.h | 1691 unsigned int interval);
|
Completed in 29 milliseconds