OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FAILURE_THRESHOLD
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiLastResortWatchdogTest.java
547
* Test has 4 buffered networks, cause
FAILURE_THRESHOLD
failures for each failure type to one
553
int associationRejections = WifiLastResortWatchdog.
FAILURE_THRESHOLD
;
554
int authenticationFailures = WifiLastResortWatchdog.
FAILURE_THRESHOLD
;
555
int dhcpFailures = WifiLastResortWatchdog.
FAILURE_THRESHOLD
;
590
* Test has 4 buffered networks, cause
FAILURE_THRESHOLD
- 1 failures for each failure type to
596
int associationRejections = WifiLastResortWatchdog.
FAILURE_THRESHOLD
- 1;
597
int authenticationFailures = WifiLastResortWatchdog.
FAILURE_THRESHOLD
- 1;
598
int dhcpFailures = WifiLastResortWatchdog.
FAILURE_THRESHOLD
- 1;
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiLastResortWatchdog.java
32
* IF each available saved network has failed connecting more times than the
FAILURE_THRESHOLD
62
public static final int
FAILURE_THRESHOLD
= 7;
347
badAuth += (entry.getValue().first.authenticationFailure >=
FAILURE_THRESHOLD
) ? 1 : 0;
348
badAssoc += (entry.getValue().first.associationRejection >=
FAILURE_THRESHOLD
) ? 1 : 0;
349
badDhcp += (entry.getValue().first.dhcpFailure >=
FAILURE_THRESHOLD
) ? 1 : 0;
423
* @return true if any failure count is over
FAILURE_THRESHOLD
426
if ((getFailureCount(bssid, FAILURE_CODE_ASSOCIATION) >=
FAILURE_THRESHOLD
)
427
|| (getFailureCount(bssid, FAILURE_CODE_AUTHENTICATION) >=
FAILURE_THRESHOLD
)
428
|| (getFailureCount(bssid, FAILURE_CODE_DHCP) >=
FAILURE_THRESHOLD
)) {
Completed in 100 milliseconds