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()
470 verify(mAnqpCache).addEntry(TEST_ANQP_KEY, anqpElementMap); in anqpResponseSuccess()
489 verify(mAnqpCache, never()).addEntry(any(ANQPNetworkKey.class), anyMap()); in anqpResponseSuccessWithUnknownRequest()
501 verify(mAnqpCache, never()).addEntry(any(ANQPNetworkKey.class), anyMap()); in anqpResponseFailure()
853 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(null); in matchProviderWithAnqpCacheMissed()
870 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderAsHomeProvider()
889 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderAsRoamingProvider()
908 when(mAnqpCache.getEntry(TEST_ANQP_KEY)).thenReturn(entry); in matchProviderWithNoMatch()
922 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()
349 mAnqpCache = objectFactory.makeAnqpCache(clock); in PasspointManager()
500 ANQPData anqpEntry = mAnqpCache.getEntry(anqpKey); in findEapMethodFromNAIRealmMatchedWithCarrier()
802 ANQPData anqpEntry = mAnqpCache.getEntry(anqpKey); in getAllMatchedProviders()
858 mAnqpCache.sweep(); in sweepCache()
916 ANQPData anqpEntry = mAnqpCache.getEntry(ANQPNetworkKey.buildKey( in getANQPElements()
1125 mAnqpCache.dump(pw); in dump()