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 82 int pending_ms; local
97 pending_ms = timeout_ms;
102 r = poll(NULL, 0, pending_ms);
104 pending_tv.tv_sec = pending_ms / 1000;
105 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
113 pending_ms = timeout_ms - ELAPSED_MS();
114 if(pending_ms <= 0) {
162 int pending_ms = 0; local
185 pending_ms = (int)timeout_ms;
214 pending_ms = -1
405 int pending_ms = 0; local
    [all...]
  /external/curl/tests/server/
util.c 219 int pending_ms; local
234 pending_ms = timeout_ms;
239 r = poll(NULL, 0, pending_ms);
241 pending_tv.tv_sec = pending_ms / 1000;
242 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
250 pending_ms = timeout_ms - (int)timediff(tvnow(), initial_tv);
251 if(pending_ms <= 0)

Completed in 78 milliseconds