Lines Matching refs:timeout
216 struct timeval timeout;
231 /* set a suitable timeout to play around with */
232 timeout.tv_sec = 1;
233 timeout.tv_usec = 0;
237 timeout.tv_sec = curl_timeo / 1000;
238 if(timeout.tv_sec > 1)
239 timeout.tv_sec = 1;
241 timeout.tv_usec = (curl_timeo % 1000) * 1000;
269 /* Note that on some platforms 'timeout' may be modified by select().
271 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
280 /* timeout or readable/writable sockets */