Lines Matching refs:pending_tv
79 struct timeval pending_tv; in Curl_wait_ms() local
104 pending_tv.tv_sec = pending_ms / 1000; in Curl_wait_ms()
105 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_wait_ms()
106 r = select(0, NULL, NULL, NULL, &pending_tv); in Curl_wait_ms()
154 struct timeval pending_tv; in Curl_socket_check()
291 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv; in Curl_socket_check()
296 pending_tv.tv_sec = pending_ms / 1000; in Curl_socket_check()
297 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_socket_check()
300 pending_tv.tv_sec = 0; in Curl_socket_check()
301 pending_tv.tv_usec = 0; in Curl_socket_check()
395 struct timeval pending_tv; in Curl_poll() local
503 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv; in Curl_poll()
508 pending_tv.tv_sec = pending_ms / 1000; in Curl_poll()
509 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in Curl_poll()
512 pending_tv.tv_sec = 0; in Curl_poll()
513 pending_tv.tv_usec = 0; in Curl_poll()