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.java579 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureOverThresholdCheck()
580 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureOverThresholdCheck()
581 assertEquals(true, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureOverThresholdCheck()
582 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureOverThresholdCheck()
622 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[0])); in testFailureCounting_failureUnderThresholdCheck()
623 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[1])); in testFailureCounting_failureUnderThresholdCheck()
624 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[2])); in testFailureCounting_failureUnderThresholdCheck()
625 assertEquals(false, mLastResortWatchdog.isOverFailureThreshold(mBssids[3])); in testFailureCounting_failureUnderThresholdCheck()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiLastResortWatchdog.java312 if (!isOverFailureThreshold(entry.getKey())) { in checkTriggerCondition()
427 public boolean isOverFailureThreshold(String bssid) { in isOverFailureThreshold() method in WifiLastResortWatchdog