Home
last modified time | relevance | path

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

/external/curl/lib/
Dselect.c329 int pending_ms; in Curl_poll() local
366 pending_ms = (int)timeout_ms; in Curl_poll()
368 pending_ms = -1; in Curl_poll()
370 pending_ms = 0; in Curl_poll()
371 r = poll(ufds, nfds, pending_ms); in Curl_poll()
/external/curl/tests/server/
Dutil.c231 int pending_ms; in wait_ms() local
246 pending_ms = timeout_ms; in wait_ms()
251 r = poll(NULL, 0, pending_ms); in wait_ms()
253 pending_tv.tv_sec = pending_ms / 1000; in wait_ms()
254 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in wait_ms()
262 pending_ms = timeout_ms - (int)timediff(tvnow(), initial_tv); in wait_ms()
263 if(pending_ms <= 0) in wait_ms()
/external/curl/
DCHANGES6669 - select: fix 'pending_ms' is assigned a value that is never used