Home
last modified time | relevance | path

Searched refs:pending_ms (Results 1 – 2 of 2) sorted by relevance

/external/curl/lib/
Dselect.c82 int pending_ms; in Curl_wait_ms() local
98 pending_ms = timeout_ms; in Curl_wait_ms()
102 r = poll(NULL, 0, pending_ms); in Curl_wait_ms()
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()
113 pending_ms = timeout_ms - ELAPSED_MS(); in Curl_wait_ms()
114 if(pending_ms <= 0) { in Curl_wait_ms()
162 int pending_ms = 0; in Curl_socket_check() local
186 pending_ms = (int)timeout_ms; in Curl_socket_check()
214 pending_ms = -1; in Curl_socket_check()
[all …]
/external/curl/tests/server/
Dutil.c209 int pending_ms; in wait_ms() local
225 pending_ms = timeout_ms; in wait_ms()
229 r = poll(NULL, 0, pending_ms); in wait_ms()
231 pending_tv.tv_sec = pending_ms / 1000; in wait_ms()
232 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in wait_ms()
240 pending_ms = timeout_ms - (int)curlx_tvdiff(curlx_tvnow(), initial_tv); in wait_ms()
241 if(pending_ms <= 0) in wait_ms()