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 79 struct timeval pending_tv; local
104 pending_tv.tv_sec = pending_ms / 1000;
105 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
106 r = select(0, NULL, NULL, NULL, &pending_tv);
154 struct timeval pending_tv;
291 ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
295 pending_tv.tv_sec = pending_ms / 1000;
296 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
299 pending_tv.tv_sec = 0;
300 pending_tv.tv_usec = 0
394 struct timeval pending_tv; local
    [all...]
  /external/curl/tests/server/
util.c 216 struct timeval pending_tv; local
241 pending_tv.tv_sec = pending_ms / 1000;
242 pending_tv.tv_usec = (pending_ms % 1000) * 1000;
243 r = select(0, NULL, NULL, NULL, &pending_tv);

Completed in 62 milliseconds