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.java618 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureOverThresholdCheck()
619 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureOverThresholdCheck()
620 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureOverThresholdCheck()
621 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureOverThresholdCheck()
661 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureUnderThresholdCheck()
662 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureUnderThresholdCheck()
663 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureUnderThresholdCheck()
664 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureUnderThresholdCheck()
1988 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testMixtureFailureCounting_failureOverThresholdCheck()
1989 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testMixtureFailureCounting_failureOverThresholdCheck()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiLastResortWatchdog.java532 if (!isOverFailureThreshold(entry.getKey())) { in checkTriggerCondition()
661 public boolean isOverFailureThreshold(String bssid) { in isOverFailureThreshold() method in WifiLastResortWatchdog