/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
RawByteElement.java | 11 public RawByteElement(Constants.ANQPElementType infoID, ByteBuffer payload) { 12 super(infoID);
|
ANQPFactory.java | 182 Constants.ANQPElementType infoID = Constants.mapANQPElement(infoIDNumber); 183 if (infoID == null) { 192 return buildElement(payload, infoID, length); 195 public static ANQPElement buildElement(ByteBuffer payload, Constants.ANQPElementType infoID, 202 switch (infoID) { 204 return new CapabilityListElement(infoID, elementPayload); 206 return new VenueNameElement(infoID, elementPayload); 208 return new EmergencyNumberElement(infoID, elementPayload); 210 return new NetworkAuthenticationTypeElement(infoID, elementPayload); 212 return new RoamingConsortiumElement(infoID, elementPayload) [all...] |
GenericBlobElement.java | 13 public GenericBlobElement(Constants.ANQPElementType infoID, ByteBuffer payload) { 14 super(infoID);
|
EmergencyNumberElement.java | 15 public EmergencyNumberElement(Constants.ANQPElementType infoID, ByteBuffer payload) 17 super(infoID);
|
GenericStringElement.java | 13 public GenericStringElement(Constants.ANQPElementType infoID, ByteBuffer payload) throws ProtocolException { 14 super(infoID);
|
HSFriendlyNameElement.java | 17 public HSFriendlyNameElement(Constants.ANQPElementType infoID, ByteBuffer payload) 19 super(infoID);
|
CapabilityListElement.java | 13 public CapabilityListElement(Constants.ANQPElementType infoID, ByteBuffer payload) 15 super(infoID);
|
DomainNameElement.java | 16 public DomainNameElement(Constants.ANQPElementType infoID, ByteBuffer payload) 18 super(infoID);
|
HSCapabilityListElement.java | 15 public HSCapabilityListElement(Constants.ANQPElementType infoID, ByteBuffer payload) 17 super(infoID);
|
HSOsuProvidersElement.java | 19 public HSOsuProvidersElement(Constants.ANQPElementType infoID, ByteBuffer payload) 21 super(infoID);
|
IPAddressTypeAvailabilityElement.java | 20 public IPAddressTypeAvailabilityElement(Constants.ANQPElementType infoID, ByteBuffer payload) 22 super(infoID);
|
ThreeGPPNetworkElement.java | 19 public ThreeGPPNetworkElement(Constants.ANQPElementType infoID, ByteBuffer payload) 21 super(infoID);
|
HSConnectionCapabilityElement.java | 59 public HSConnectionCapabilityElement(Constants.ANQPElementType infoID, ByteBuffer payload) 61 super(infoID);
|
HSIconFileElement.java | 23 public HSIconFileElement(Constants.ANQPElementType infoID, ByteBuffer payload) 25 super(infoID);
|
HSWanMetricsElement.java | 28 public HSWanMetricsElement(Constants.ANQPElementType infoID, ByteBuffer payload) 30 super(infoID);
|
RoamingConsortiumElement.java | 22 public RoamingConsortiumElement(Constants.ANQPElementType infoID, ByteBuffer payload) 24 super(infoID);
|
NAIRealmElement.java | 24 public NAIRealmElement(Constants.ANQPElementType infoID, ByteBuffer payload) 26 super(infoID);
|
VenueNameElement.java | 22 public VenueNameElement(Constants.ANQPElementType infoID, ByteBuffer payload) 24 super(infoID);
|
CivicLocationElement.java | 24 public CivicLocationElement(Constants.ANQPElementType infoID, ByteBuffer payload) 26 super(infoID);
|
GEOLocationElement.java | 100 public GEOLocationElement(Constants.ANQPElementType infoID, ByteBuffer payload) 102 super(infoID);
|
/frameworks/base/packages/Osu/src/com/android/anqp/ |
HSOsuProvidersElement.java | 19 public HSOsuProvidersElement(Constants.ANQPElementType infoID, ByteBuffer payload) 21 super(infoID);
|
HSIconFileElement.java | 23 public HSIconFileElement(Constants.ANQPElementType infoID, ByteBuffer payload) 25 super(infoID);
|
/frameworks/base/packages/Osu/src/com/android/anqp/eap/ |
Credential.java | 29 public Credential(EAP.AuthInfoID infoID, int length, ByteBuffer payload) 35 mAuthInfoID = infoID;
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/ |
Credential.java | 29 public Credential(EAP.AuthInfoID infoID, int length, ByteBuffer payload) 35 mAuthInfoID = infoID;
|