Lines Matching defs:timeout
428 int timeout;
456 timeout = 0;
458 timeout = uv__backend_timeout(loop);
462 uv__io_poll(loop, timeout);
470 * returned because the timeout expired, but no events were received. This
472 * the timeout == 0) or was already updated b/c an event was received.
482 * I/O (meaning: no callbacks) when its timeout expires - which means we
1802 struct timespec timeout;
1805 timeout.tv_sec = msec / 1000;
1806 timeout.tv_nsec = (msec % 1000) * 1000 * 1000;
1809 rc = nanosleep(&timeout, &timeout);