Searched refs:protoPortMap (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/ |
D | Policy.java | 511 Map<Integer, String> protoPortMap = new HashMap<>(size); 515 protoPortMap.put(key, value); 517 return protoPortMap; 546 private static void writeProtoPortMap(Parcel dest, Map<Integer, String> protoPortMap) { in writeProtoPortMap() argument 547 if (protoPortMap == null) { in writeProtoPortMap() 551 dest.writeInt(protoPortMap.size()); in writeProtoPortMap() 552 for (Map.Entry<Integer, String> entry : protoPortMap.entrySet()) { in writeProtoPortMap()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | PasspointXmlUtils.java | 447 private static void serializeProtoPortMap(XmlSerializer out, Map<Integer, String> protoPortMap) in serializeProtoPortMap() argument 449 if (protoPortMap == null) { in serializeProtoPortMap() 453 for (Map.Entry<Integer, String> entry : protoPortMap.entrySet()) { in serializeProtoPortMap() 869 Map<Integer, String> protoPortMap = new HashMap<>(); in deserializeProtoPortMap() local 874 protoPortMap.put(proto, ports); in deserializeProtoPortMap() 876 return protoPortMap; in deserializeProtoPortMap()
|