Home
last modified time | relevance | path

Searched refs:shouldIgnoreBssidUpdate (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DBssidBlocklistMonitorTest.java480 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testWatchdogIsGivenChanceToTrigger()
487 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in testWatchdogIsGivenChanceToTrigger()
498 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testUnrelatedErrorsBypassWatchdogCheck()
500 verify(mWifiLastResortWatchdog, never()).shouldIgnoreBssidUpdate(anyString()); in testUnrelatedErrorsBypassWatchdogCheck()
DWifiConnectivityManagerTest.java132 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in setUp()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DBssidBlocklistMonitor.java215 return isWatchdogRelatedFailure && mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(bssid); in shouldWaitForWatchdogToTriggerFirst()
DWifiLastResortWatchdog.java469 public boolean shouldIgnoreBssidUpdate(String bssid) { in shouldIgnoreBssidUpdate() method in WifiLastResortWatchdog