Home
last modified time | relevance | path

Searched refs:retryTimes (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiPseudonymManager.java533 int retryTimes = mRetryTimesArrayForConnectionError.get(carrierId, 0); in retryForConnectionError() local
534 if (retryTimes >= RETRY_INTERVALS_FOR_CONNECTION_ERROR.length) { in retryForConnectionError()
540 long interval = RETRY_INTERVALS_FOR_CONNECTION_ERROR[retryTimes]; in retryForConnectionError()
541 retryTimes++; in retryForConnectionError()
542 mRetryTimesArrayForConnectionError.put(carrierId, retryTimes); in retryForConnectionError()
543 vlogd("retryForConnectionError: Schedule retry " + retryTimes + " in " in retryForConnectionError()
549 int retryTimes = mRetryTimesArrayForServerError.get(carrierId, 0); in retryForServerError() local
550 if (retryTimes >= RETRY_INTERVALS_FOR_SERVER_ERROR.length) { in retryForServerError()
555 long interval = RETRY_INTERVALS_FOR_SERVER_ERROR[retryTimes]; in retryForServerError()
556 retryTimes++; in retryForServerError()
[all …]
/packages/modules/DnsResolver/
Dres_send.cpp571 int retryTimes = (flags & ANDROID_RESOLV_NO_RETRY) ? 1 : params.retry_count; in res_nsend() local
578 for (int attempt = 0; attempt < retryTimes; ++attempt) { in res_nsend()
599 attempt = retryTimes; in res_nsend()