Home
last modified time | relevance | path

Searched refs:interval (Results 1 – 9 of 9) sorted by relevance

/libuv/src/
H A Dfs-poll.c40 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/docs/src/
H A Dfs_poll.rst49 …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 Dtimer.rst62 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 Dfs_event.rst81 * regular interval.
H A Dtcp.rst167 setting the `SO_LINGER` socket option with a linger interval of zero and
/libuv/src/unix/
H A Dthread.c480 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 Dutilities.rst35 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 Dtest-fs.c3699 int interval; member
3715 nbytes = size < ctx->interval ? size : ctx->interval; in thread_main()
3769 ctx.interval = 1000; in test_fs_partial()
/libuv/include/
H A Duv.h1673 unsigned int interval);

Completed in 38 milliseconds