Home | History | Annotate | Download | only in hotspot2

Lines Matching defs:CacheKey

19     private static final boolean STANDARD_ESS = true;  // Regular AP keying; see CacheKey below.
23 private final HashMap<CacheKey, ANQPData> mANQPCache;
31 private static class CacheKey {
36 private CacheKey(String ssid, long bssid, long hessid) {
56 * @return A CacheKey.
58 private static CacheKey buildKey(NetworkDetail network, boolean standardESS) {
78 return new CacheKey(ssid, bssid, hessid);
99 else if (thatObject == null || thatObject.getClass() != CacheKey.class) {
102 CacheKey that = (CacheKey) thatObject;
125 CacheKey key = CacheKey.buildKey(network, STANDARD_ESS);
146 CacheKey key = CacheKey.buildKey(network, STANDARD_ESS);
165 CacheKey key = CacheKey.buildKey(network, STANDARD_ESS);
182 List<CacheKey> retirees = new ArrayList<>();
183 for (Map.Entry<CacheKey, ANQPData> entry : mANQPCache.entrySet()) {
188 for (CacheKey key : retirees) {