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

  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 80 base::TimeDelta next_wait = timeout; local
82 if (next_wait <= base::TimeDelta())
84 on_update_event_.TimedWait(next_wait);
85 next_wait = deadline - base::TimeTicks::Now();
  /external/wpa_supplicant_8/src/radius/
radius_client.c 118 * next_wait - Next retransmission wait time in seconds
120 int next_wait; member in struct:radius_msg_list
370 entry->next_try = now + entry->next_wait;
371 entry->next_wait *= 2;
372 if (entry->next_wait > RADIUS_CLIENT_MAX_WAIT)
373 entry->next_wait = RADIUS_CLIENT_MAX_WAIT;
568 entry->next_wait = RADIUS_CLIENT_FIRST_WAIT * 2;
1007 entry->next_wait = RADIUS_CLIENT_FIRST_WAIT * 2;
    [all...]

Completed in 43 milliseconds