Home
last modified time | relevance | path

Searched refs:roamingConsortiums (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java199 public long[] roamingConsortiums = null; field in InformationElementUtil.RoamingConsortium
223 roamingConsortiums = new long[oiCount]; in from()
224 if (oi1Length > 0 && roamingConsortiums.length > 0) { in from()
225 roamingConsortiums[0] = in from()
228 if (oi2Length > 0 && roamingConsortiums.length > 1) { in from()
229 roamingConsortiums[1] = in from()
232 if (oi3Length > 0 && roamingConsortiums.length > 2) { in from()
233 roamingConsortiums[2] = in from()
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DHomeSP.java37 /*@NotNull*/ HashSet<Long> roamingConsortiums, in HomeSP() argument
53 mRoamingConsortiums = roamingConsortiums; in HomeSP()
70 /*@NotNull*/ HashSet<Long> roamingConsortiums, in HomeSP() argument
93 mRoamingConsortiums = roamingConsortiums; in HomeSP()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DHomeSP.java59 /*@NotNull*/ HashSet<Long> roamingConsortiums, in HomeSP() argument
75 mRoamingConsortiums = roamingConsortiums; in HomeSP()
92 /*@NotNull*/ HashSet<Long> roamingConsortiums, in HomeSP() argument
115 mRoamingConsortiums = roamingConsortiums; in HomeSP()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DPasspointManagementObjectManagerTest.java87 HashSet<Long> roamingConsortiums = new HashSet<Long>(); in addMoFromWifiConfig() local
104 roamingConsortiums, Collections.<String>emptySet(), in addMoFromWifiConfig()
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
DMOManager.java693 HashSet<Long> roamingConsortiums = new HashSet<>(); in buildHomeSP() local
697 roamingConsortiums.add(Long.parseLong(oi.trim(), 16)); in buildHomeSP()
757 return new HomeSP(ssids, fqdn, roamingConsortiums, otherHomePartners, in buildHomeSP()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
DPasspointManagementObjectManager.java652 HashSet<Long> roamingConsortiums = new HashSet<>(); in buildHomeSP() local
656 roamingConsortiums.add(Long.parseLong(oi.trim(), 16)); in buildHomeSP()
716 return new HomeSP(ssids, fqdn, roamingConsortiums, otherHomePartners, in buildHomeSP()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java253 mRoamingConsortiums = roamingConsortium.roamingConsortiums; in NetworkDetail()