Home | History | Annotate | Download | only in Clients

Lines Matching refs:timeOut

229 // Note: the select() implementation on Windows (Winsock2) fails with any timeout much larger than this
233 static volatile int timeOut = LONG_TIME;
616 timeOut = LONG_TIME;
619 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
620 (uint64_t)timeOut * NSEC_PER_SEC, 0);
650 timeOut = 5;
653 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
654 (uint64_t)timeOut * NSEC_PER_SEC, 0);
838 // Start the timer "timeout" seconds into the future and repeat it every "timeout" seconds
839 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
840 (uint64_t)timeOut * NSEC_PER_SEC, 0);
869 // 3. Set up the timeout.
870 tv.tv_sec = timeOut;