Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java88 import com.android.server.wifi.SupplicantStaIfaceHal.PmkCacheStoreData;
1772 PmkCacheStoreData pmkCacheData = in testSetPmkSuccess()
1773 new PmkCacheStoreData(PMK_CACHE_EXPIRATION_IN_SEC, new ArrayList<Byte>(), in testSetPmkSuccess()
1834 PmkCacheStoreData pmkCacheData = in testAddPmkEntryIsOmittedWithPskNetwork()
1835 new PmkCacheStoreData(PMK_CACHE_EXPIRATION_IN_SEC, new ArrayList<Byte>(), in testAddPmkEntryIsOmittedWithPskNetwork()
1865 PmkCacheStoreData pmkCacheData = in testAddPmkEntryIsOmittedWithOldHal()
1866 new PmkCacheStoreData(PMK_CACHE_EXPIRATION_IN_SEC, new ArrayList<Byte>(), in testAddPmkEntryIsOmittedWithOldHal()
1893 PmkCacheStoreData pmkCacheData = in testRemovePmkEntryOnReceivingAssocReject()
1894 new PmkCacheStoreData(PMK_CACHE_EXPIRATION_IN_SEC, new ArrayList<Byte>(), in testRemovePmkEntryOnReceivingAssocReject()
1926 PmkCacheStoreData pmkCacheData = in testRemovePmkEntryOnMacAddressChanged()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceHal.java115 HashMap<Integer, PmkCacheStoreData> mPmkCacheEntries = new HashMap<>();
171 static class PmkCacheStoreData { class in SupplicantStaIfaceHal
176 PmkCacheStoreData(long timeInSec, ArrayList<Byte> serializedData, MacAddress macAddress) { in PmkCacheStoreData() method in SupplicantStaIfaceHal.PmkCacheStoreData
991 PmkCacheStoreData pmkData = mPmkCacheEntries.get(config.networkId); in connectToNetwork()
1066 PmkCacheStoreData pmkData = mPmkCacheEntries.get(networkId); in removeNetworkCachedDataIfNeeded()
2670 new PmkCacheStoreData(expirationTimeInSec, serializedEntry, macAddress)); in addPmkCacheEntry()
2691 Iterator<Map.Entry<Integer, PmkCacheStoreData>> iter = in updatePmkCacheExpiration()
2694 Map.Entry<Integer, PmkCacheStoreData> entry = iter.next(); in updatePmkCacheExpiration()