/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
ANQPElement.java | 7 private final Constants.ANQPElementType mID; 9 protected ANQPElement(Constants.ANQPElementType id) { 13 public Constants.ANQPElementType getID() {
|
Constants.java | 57 public enum ANQPElementType { 88 private static final Map<Integer, ANQPElementType> sAnqpMap = new HashMap<Integer, ANQPElementType>(); 89 private static final Map<Integer, ANQPElementType> sHs20Map = new HashMap<Integer, ANQPElementType>(); 90 private static final Map<ANQPElementType, Integer> sRevAnqpmap = new HashMap<ANQPElementType, Integer>(); 91 private static final Map<ANQPElementType, Integer> sRevHs20map = new HashMap<ANQPElementType, Integer>(); 94 sAnqpMap.put(ANQP_QUERY_LIST, ANQPElementType.ANQPQueryList) [all...] |
CapabilityListElement.java | 11 private final Constants.ANQPElementType[] mCapabilities; 13 public CapabilityListElement(Constants.ANQPElementType infoID, ByteBuffer payload) 18 mCapabilities = new Constants.ANQPElementType[payload.remaining() / Constants.BYTES_IN_SHORT]; 23 Constants.ANQPElementType capability = Constants.mapANQPElement(capID); 30 public Constants.ANQPElementType[] getCapabilities() {
|
HSCapabilityListElement.java | 13 private final Constants.ANQPElementType[] mCapabilities; 15 public HSCapabilityListElement(Constants.ANQPElementType infoID, ByteBuffer payload) 19 mCapabilities = new Constants.ANQPElementType[payload.remaining()]; 24 Constants.ANQPElementType capability = Constants.mapHS20Element(capID); 32 public Constants.ANQPElementType[] getCapabilities() {
|
TestDriver.java | 22 private static final Constants.ANQPElementType[] QueryElements = { 23 Constants.ANQPElementType.ANQPCapabilityList, 24 Constants.ANQPElementType.ANQPVenueName, 25 Constants.ANQPElementType.ANQPEmergencyNumber, 26 Constants.ANQPElementType.ANQPNwkAuthType, 27 Constants.ANQPElementType.ANQPRoamingConsortium, 28 Constants.ANQPElementType.ANQPIPAddrAvailability, 29 Constants.ANQPElementType.ANQPNAIRealm, 30 Constants.ANQPElementType.ANQP3GPPNetwork, 31 Constants.ANQPElementType.ANQPGeoLoc [all...] |
ANQPFactory.java | 18 private static final Constants.ANQPElementType[] BaseANQPSet = new Constants.ANQPElementType[]{ 19 Constants.ANQPElementType.ANQPVenueName, 20 Constants.ANQPElementType.ANQPNwkAuthType, 21 Constants.ANQPElementType.ANQPRoamingConsortium, 22 Constants.ANQPElementType.ANQPIPAddrAvailability, 23 Constants.ANQPElementType.ANQPNAIRealm, 24 Constants.ANQPElementType.ANQP3GPPNetwork, 25 Constants.ANQPElementType.ANQPDomName 28 private static final Constants.ANQPElementType[] HS20ANQPSet = new Constants.ANQPElementType[] [all...] |
GenericBlobElement.java | 13 public GenericBlobElement(Constants.ANQPElementType infoID, ByteBuffer payload) {
|
EmergencyNumberElement.java | 15 public EmergencyNumberElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
GenericStringElement.java | 13 public GenericStringElement(Constants.ANQPElementType infoID, ByteBuffer payload) throws ProtocolException {
|
HSFriendlyNameElement.java | 17 public HSFriendlyNameElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
DomainNameElement.java | 16 public DomainNameElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
HSOsuProvidersElement.java | 19 public HSOsuProvidersElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
IPAddressTypeAvailabilityElement.java | 20 public IPAddressTypeAvailabilityElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
ThreeGPPNetworkElement.java | 19 public ThreeGPPNetworkElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
HSConnectionCapabilityElement.java | 59 public HSConnectionCapabilityElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
HSIconFileElement.java | 23 public HSIconFileElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
HSWanMetricsElement.java | 28 public HSWanMetricsElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
RoamingConsortiumElement.java | 22 public RoamingConsortiumElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
NAIRealmElement.java | 24 public NAIRealmElement(Constants.ANQPElementType infoID, ByteBuffer payload)
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
SupplicantBridge.java | 36 private static final Map<String, Constants.ANQPElementType> sWpsNames = new HashMap<>(); 39 sWpsNames.put("anqp_venue_name", Constants.ANQPElementType.ANQPVenueName); 40 sWpsNames.put("anqp_network_auth_type", Constants.ANQPElementType.ANQPNwkAuthType); 41 sWpsNames.put("anqp_roaming_consortium", Constants.ANQPElementType.ANQPRoamingConsortium); 43 Constants.ANQPElementType.ANQPIPAddrAvailability); 44 sWpsNames.put("anqp_nai_realm", Constants.ANQPElementType.ANQPNAIRealm); 45 sWpsNames.put("anqp_3gpp", Constants.ANQPElementType.ANQP3GPPNetwork); 46 sWpsNames.put("anqp_domain_name", Constants.ANQPElementType.ANQPDomName); 47 sWpsNames.put("hs20_operator_friendly_name", Constants.ANQPElementType.HSFriendlyName); 48 sWpsNames.put("hs20_wan_metrics", Constants.ANQPElementType.HSWANMetrics) [all...] |
ANQPData.java | 33 private final Map<Constants.ANQPElementType, ANQPElement> mANQPElements; 39 Map<Constants.ANQPElementType, ANQPElement> anqpElements) { 70 public Map<Constants.ANQPElementType, ANQPElement> getANQPElements() {
|
PasspointMatchInfo.java | 14 import static com.android.server.wifi.anqp.Constants.ANQPElementType; 123 Map<ANQPElementType, ANQPElement> anqp = getNetworkDetail().getANQPElements(); 126 HSWanMetricsElement wm = (HSWanMetricsElement) anqp.get(ANQPElementType.HSWANMetrics); 141 (IPAddressTypeAvailabilityElement) anqp.get(ANQPElementType.ANQPIPAddrAvailability); 153 (HSConnectionCapabilityElement) anqp.get(ANQPElementType.HSConnCapability);
|
NetworkDetail.java | 123 private final Map<Constants.ANQPElementType, ANQPElement> mANQPElements; 220 new VenueNameElement(Constants.ANQPElementType.ANQPVenueName, 414 private NetworkDetail(NetworkDetail base, Map<Constants.ANQPElementType, ANQPElement> anqpElements) { 438 public NetworkDetail complete(Map<Constants.ANQPElementType, ANQPElement> anqpElements) { 540 public Map<Constants.ANQPElementType, ANQPElement> getANQPElements() {
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/ |
HomeSP.java | 25 import static com.android.server.wifi.anqp.Constants.ANQPElementType; 86 Map<ANQPElementType, ANQPElement> anqpElementMap, 98 anqpElementMap.get(ANQPElementType.ANQP3GPPNetwork)) != null) { 104 (NAIRealmElement) anqpElementMap.get(ANQPElementType.ANQPNAIRealm); 128 Map<ANQPElementType, ANQPElement> anqpElementMap, 147 (RoamingConsortiumElement) anqpElementMap.get(ANQPElementType.ANQPRoamingConsortium) 191 (DomainNameElement) anqpElementMap.get(ANQPElementType.ANQPDomName);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
ScanDetail.java | 80 public void propagateANQPInfo(Map<Constants.ANQPElementType, ANQPElement> anqpElements) { 86 Constants.ANQPElementType.HSFriendlyName); 92 (((VenueNameElement)anqpElements.get(Constants.ANQPElementType.ANQPVenueName)));
|