Searched defs:scanResultCache (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiAutoJoinController.java62 private HashMap<String, ScanResult> scanResultCache = field in class:WifiAutoJoinController
146 + Integer.valueOf(scanResultCache.size()) + " now " + Long.valueOf(milli));
149 Iterator<HashMap.Entry<String,ScanResult>> iter = scanResultCache.entrySet().iterator();
175 ScanResult sr = scanResultCache.get(result.BSSID);
189 scanResultCache.remove(result.BSSID);
229 // scanResultCache.put(result.BSSID, new ScanResult(result));
230 scanResultCache.put(result.BSSID, result);
231 // Add this BSSID to the scanResultCache of a Saved WifiConfiguration
299 logDbg("newSupplicantResults size=" + Integer.valueOf(scanResultCache.size())
992 if (current.scanResultCache
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java390 public HashMap<String, ScanResult> scanResultCache; field in class:WifiConfiguration
558 if (scanResultCache == null) {
566 for(ScanResult result : scanResultCache.values()) {
936 if (scanResultCache == null) {
940 for (ScanResult result : scanResultCache.values()) {
972 if (this.scanResultCache == null) {
975 int currenSize = this.scanResultCache.size();
979 ArrayList<ScanResult> list = new ArrayList<ScanResult>(this.scanResultCache.values());
999 this.scanResultCache.remove(result.BSSID);
1005 ArrayList<ScanResult> list = new ArrayList<ScanResult>(this.scanResultCache
[all...]

Completed in 14 milliseconds