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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dselect.c79 int pending_ms; local
95 pending_ms = timeout_ms;
99 r = poll(NULL, 0, pending_ms);
101 pending_tv.tv_sec = pending_ms / 1000;
102 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
110 pending_ms = timeout_ms - elapsed_ms;
111 if(pending_ms <= 0)
157 int pending_ms = 0; local
175 pending_ms = (int)timeout_ms;
203 pending_ms
363 int pending_ms = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/server/
H A Dutil.c210 int pending_ms; local
226 pending_ms = timeout_ms;
230 r = poll(NULL, 0, pending_ms);
232 pending_tv.tv_sec = pending_ms / 1000;
233 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
241 pending_ms = timeout_ms - (int)curlx_tvdiff(curlx_tvnow(), initial_tv);
242 if(pending_ms <= 0)

Completed in 65 milliseconds