Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiLastResortWatchdogTest.java613 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureOverThresholdCheck()
614 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureOverThresholdCheck()
615 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureOverThresholdCheck()
616 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureOverThresholdCheck()
656 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureUnderThresholdCheck()
657 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureUnderThresholdCheck()
658 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureUnderThresholdCheck()
659 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureUnderThresholdCheck()
1981 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testMixtureFailureCounting_failureOverThresholdCheck()
1982 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testMixtureFailureCounting_failureOverThresholdCheck()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiLastResortWatchdog.java526 if (!isOverFailureThreshold(entry.getKey())) { in checkTriggerCondition()
649 public boolean isOverFailureThreshold(String bssid) { in isOverFailureThreshold() method in WifiLastResortWatchdog