Lines Matching refs:timeout
70 struct timeval timeout;
85 /* set a suitable timeout to play around with */
86 timeout.tv_sec = 1;
87 timeout.tv_usec = 0;
91 curlx_mstotv(&timeout, curl_timeo);
92 if(timeout.tv_sec > 1) {
93 timeout.tv_sec = 1;
94 timeout.tv_usec = 0;
123 /* Note that on some platforms 'timeout' may be modified by select().
125 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
132 case 0: /* timeout */