Home
last modified time | relevance | path

Searched refs:mAnqpCache (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java171 @Mock AnqpCache mAnqpCache; field in PasspointManagerTest
202 when(mObjectFactory.makeAnqpCache(mClock)).thenReturn(mAnqpCache); in setUp()
468 verify(mAnqpCache).addEntry(TEST_ANQP_KEY, anqpElementMap); in anqpResponseSuccess()
487 verify(mAnqpCache, never()).addEntry(any(ANQPNetworkKey.class), anyMap()); in anqpResponseSuccessWithUnknownRequest()
499 verify(mAnqpCache, never()).addEntry(any(ANQPNetworkKey.class), anyMap()); in anqpResponseFailure()
851 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(null); in matchProviderWithAnqpCacheMissed()
868 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderAsHomeProvider()
887 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderAsRoamingProvider()
906 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderWithNoMatch()
920 verify(mAnqpCache).sweep(); in sweepCache()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointManager.java124 private final AnqpCache mAnqpCache; field in PasspointManager
162 mAnqpCache.addEntry(anqpKey, anqpElements); in onANQPResponse()
348 mAnqpCache = objectFactory.makeAnqpCache(clock); in PasspointManager()
495 ANQPData anqpEntry = mAnqpCache.getEntry(anqpKey); in findEapMethodFromNAIRealmMatchedWithCarrier()
784 ANQPData anqpEntry = mAnqpCache.getEntry(anqpKey); in getAllMatchedProviders()
840 mAnqpCache.sweep(); in sweepCache()
898 ANQPData anqpEntry = mAnqpCache.getEntry(ANQPNetworkKey.buildKey( in getANQPElements()
1106 mAnqpCache.dump(pw); in dump()