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

  /external/curl/lib/
select.c 80 struct timeval pending_tv; local
105 pending_tv.tv_sec = pending_ms / 1000;
106 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
107 r = select(0, NULL, NULL, NULL, &pending_tv);
155 struct timeval pending_tv;
286 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
290 pending_tv.tv_sec = pending_ms / 1000;
291 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
294 pending_tv.tv_sec = 0;
295 pending_tv.tv_usec = 0
389 struct timeval pending_tv; local
    [all...]
  /external/curl/tests/server/
util.c 206 struct timeval pending_tv; local
231 pending_tv.tv_sec = pending_ms / 1000;
232 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
233 r = select(0, NULL, NULL, NULL, &pending_tv);

Completed in 62 milliseconds