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

  /external/stressapptest/src/
finelock_queue.cc 335 uint64 next_try = 1; local
339 uint64 index = (next_try + first_try) % q_size_;
343 next_try = (a_ * next_try + c_) % (modlength_);
344 while (next_try >= q_size_) {
347 next_try = (a_ * next_try + c_) % (modlength_);
  /external/wpa_supplicant_8/src/radius/
radius_client.c 108 * next_try - Time for the next transmission attempt
110 os_time_t next_try; member in struct:radius_msg_list
359 entry->next_try = now + entry->next_wait;
392 if (now.sec >= entry->next_try &&
414 if (first == 0 || entry->next_try < first)
415 first = entry->next_try;
497 if (first == 0 || entry->next_try < first)
498 first = entry->next_try;
542 entry->next_try = entry->first_try + RADIUS_CLIENT_FIRST_WAIT;
981 entry->next_try = entry->first_try + RADIUS_CLIENT_FIRST_WAIT
    [all...]

Completed in 1659 milliseconds