HomeSort by relevance Sort by last modified time
    Searched refs:pending_ms (Results 1 - 2 of 2) sorted by null

  /external/curl/lib/
select.c 83 int pending_ms; local
99 pending_ms = timeout_ms;
103 r = poll(NULL, 0, pending_ms);
105 pending_tv.tv_sec = pending_ms / 1000;
106 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
114 pending_ms = timeout_ms - elapsed_ms;
115 if(pending_ms <= 0) {
163 int pending_ms = 0; local
181 pending_ms = (int)timeout_ms;
209 pending_ms = -1
399 int pending_ms = 0; local
    [all...]
  /external/curl/tests/server/
util.c 209 int pending_ms; local
225 pending_ms = timeout_ms;
229 r = poll(NULL, 0, pending_ms);
231 pending_tv.tv_sec = pending_ms / 1000;
232 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
240 pending_ms = timeout_ms - (int)curlx_tvdiff(curlx_tvnow(), initial_tv);
241 if(pending_ms <= 0)

Completed in 149 milliseconds