Searched refs:protoPortMap (Results 1 – 2 of 2) sorted by relevance
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/hotspot2/pps/ |
H A 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()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/ |
H A D | PasspointXmlUtils.java | 498 private static void serializeProtoPortMap(XmlSerializer out, Map<Integer, String> protoPortMap) in serializeProtoPortMap() argument 500 if (protoPortMap == null) { in serializeProtoPortMap() 504 for (Map.Entry<Integer, String> entry : protoPortMap.entrySet()) { in serializeProtoPortMap() 920 Map<Integer, String> protoPortMap = new HashMap<>(); in deserializeProtoPortMap() local 925 protoPortMap.put(proto, ports); in deserializeProtoPortMap() 927 return protoPortMap; in deserializeProtoPortMap()
|