Lines Matching refs:pending_tv
80 struct timeval pending_tv; in Curl_wait_ms() local
105 pending_tv.tv_sec = pending_ms / 1000; in Curl_wait_ms()
106 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_wait_ms()
107 r = select(0, NULL, NULL, NULL, &pending_tv); in Curl_wait_ms()
155 struct timeval pending_tv; in Curl_socket_check()
286 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv; in Curl_socket_check()
290 pending_tv.tv_sec = pending_ms / 1000; in Curl_socket_check()
291 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_socket_check()
294 pending_tv.tv_sec = 0; in Curl_socket_check()
295 pending_tv.tv_usec = 0; in Curl_socket_check()
389 struct timeval pending_tv; in Curl_poll() local
497 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv; in Curl_poll()
501 pending_tv.tv_sec = pending_ms / 1000; in Curl_poll()
502 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_poll()
505 pending_tv.tv_sec = 0; in Curl_poll()
506 pending_tv.tv_usec = 0; in Curl_poll()