Home
last modified time | relevance | path

Searched refs:eapMethodID (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DInnerAuthEAP.java39 public InnerAuthEAP(int eapMethodID) { in InnerAuthEAP() argument
41 mEAPMethodID = eapMethodID; in InnerAuthEAP()
57 int eapMethodID = payload.get() & 0xFF; in parse() local
58 return new InnerAuthEAP(eapMethodID); in parse()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DANQPMatcherTest.java170 int eapMethodID = EAPConstants.EAP_TLS; in matchNAIRealmWithRealmMethodMatch() local
173 EAPMethod method = new EAPMethod(eapMethodID, new HashMap<Integer, Set<AuthParam>>()); in matchNAIRealmWithRealmMethodMatch()
193 int eapMethodID = EAPConstants.EAP_TTLS; in matchNAIRealmWithExactMatch() local
201 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithExactMatch()
220 int eapMethodID = EAPConstants.EAP_TTLS; in matchNAIRealmWithEAPMethodMismatch() local
228 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithEAPMethodMismatch()
248 int eapMethodID = EAPConstants.EAP_TTLS; in matchNAIRealmWithAuthTypeMismatch() local
256 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithAuthTypeMismatch()
342 int eapMethodID = EAPConstants.EAP_AKA; in getEapMethodForNAIRealmWithCarrierInMatch() local
345 EAPMethod method = new EAPMethod(eapMethodID, null); in getEapMethodForNAIRealmWithCarrierInMatch()
[all …]
DPasspointProviderTest.java166 private NAIRealmElement createNAIRealmElement(String realm, int eapMethodID, in createNAIRealmElement() argument
174 EAPMethod eapMethod = new EAPMethod(eapMethodID, authParamMap); in createNAIRealmElement()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DANQPMatcher.java137 int eapMethodID = getEapMethodForNAIRealmWithCarrier(realm, realmData); in getCarrierEapMethodFromMatchingNAIRealm() local
138 if (eapMethodID != -1) { in getCarrierEapMethodFromMatchingNAIRealm()
139 return eapMethodID; in getCarrierEapMethodFromMatchingNAIRealm()
215 private static int matchEAPMethod(EAPMethod method, int eapMethodID, AuthParam authParam) { in matchEAPMethod() argument
216 if (method.getEAPMethodID() != eapMethodID) { in matchEAPMethod()