Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiBlocklistMonitorTest.java660 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testWatchdogIsGivenChanceToTrigger()
667 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in testWatchdogIsGivenChanceToTrigger()
678 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testUnrelatedErrorsBypassWatchdogCheck()
680 verify(mWifiLastResortWatchdog, never()).shouldIgnoreBssidUpdate(anyString()); in testUnrelatedErrorsBypassWatchdogCheck()
H A DWifiConnectivityManagerTest.java182 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in setUp()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiLastResortWatchdog.java509 public boolean shouldIgnoreBssidUpdate(String bssid) { in shouldIgnoreBssidUpdate() method in WifiLastResortWatchdog
H A DWifiBlocklistMonitor.java300 return isWatchdogRelatedFailure && mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(bssid); in shouldWaitForWatchdogToTriggerFirst()