Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiBlocklistMonitorTest.java849 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testWatchdogIsGivenChanceToTrigger()
856 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in testWatchdogIsGivenChanceToTrigger()
867 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(true); in testUnrelatedErrorsBypassWatchdogCheck()
869 verify(mWifiLastResortWatchdog, never()).shouldIgnoreBssidUpdate(anyString()); in testUnrelatedErrorsBypassWatchdogCheck()
DWifiConnectivityManagerTest.java202 when(mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(anyString())).thenReturn(false); in setUp()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiLastResortWatchdog.java510 public boolean shouldIgnoreBssidUpdate(String bssid) { in shouldIgnoreBssidUpdate() method in WifiLastResortWatchdog
DWifiBlocklistMonitor.java388 return isWatchdogRelatedFailure && mWifiLastResortWatchdog.shouldIgnoreBssidUpdate(bssid); in shouldWaitForWatchdogToTriggerFirst()