Searched refs:untrustedNetworkHistory (Results 1 - 1 of 1) sorted by path

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConnectionStatistics.java42 public HashMap<String, WifiNetworkConnectionStatistics> untrustedNetworkHistory; field in class:WifiConnectionStatistics
60 untrustedNetworkHistory = new HashMap<String, WifiNetworkConnectionStatistics>();
67 if (untrustedNetworkHistory.containsKey(SSID)) {
68 stats = untrustedNetworkHistory.get(SSID);
77 untrustedNetworkHistory.put(SSID, stats);
90 for (String Key : untrustedNetworkHistory.keySet()) {
91 WifiNetworkConnectionStatistics stats = untrustedNetworkHistory.get(Key);
101 untrustedNetworkHistory = new HashMap<String, WifiNetworkConnectionStatistics>();
103 untrustedNetworkHistory.putAll(source.untrustedNetworkHistory);
[all...]

Completed in 142 milliseconds