Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
DPolicy.java511 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/
DPasspointXmlUtils.java439 private static void serializeProtoPortMap(XmlSerializer out, Map<Integer, String> protoPortMap) in serializeProtoPortMap() argument
441 if (protoPortMap == null) { in serializeProtoPortMap()
445 for (Map.Entry<Integer, String> entry : protoPortMap.entrySet()) { in serializeProtoPortMap()
861 Map<Integer, String> protoPortMap = new HashMap<>(); in deserializeProtoPortMap() local
866 protoPortMap.put(proto, ports); in deserializeProtoPortMap()
868 return protoPortMap; in deserializeProtoPortMap()