Home
last modified time | relevance | path

Searched refs:ExpandedEAPMethod (Results 1 – 8 of 8) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/eap/
DExpandedEAPMethodTest.java46 ExpandedEAPMethod.parse( in parseEmptyBuffer()
47 ByteBuffer.wrap(new byte[0]), ExpandedEAPMethod.EXPECTED_LENGTH_VALUE, false); in parseEmptyBuffer()
58 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES), in parseBufferWithInvalidLength()
59 ExpandedEAPMethod.EXPECTED_LENGTH_VALUE - 1, false); in parseBufferWithInvalidLength()
69 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES, 0, TEST_DATA_BYTES.length - 1), in parseBufferWithTruncatedBuffer()
70 ExpandedEAPMethod.EXPECTED_LENGTH_VALUE, false); in parseBufferWithTruncatedBuffer()
81 ExpandedEAPMethod expected = new ExpandedEAPMethod( in parseBufferForNonInnerEAPMethod()
83 ExpandedEAPMethod actual = ExpandedEAPMethod.parse( in parseBufferForNonInnerEAPMethod()
84 ByteBuffer.wrap(TEST_DATA_BYTES), ExpandedEAPMethod.EXPECTED_LENGTH_VALUE, false); in parseBufferForNonInnerEAPMethod()
96 ExpandedEAPMethod expected = new ExpandedEAPMethod( in parseBufferForTunneledEAPMethod()
[all …]
DEAPMethodTest.java100 TEST_DATA2_EXPANDED_EAP_METHOD_PARAMS.add(new ExpandedEAPMethod( in TEST_DATA2_EXPANDED_EAP_METHOD_PARAMS.add()
105 TEST_DATA2_EXPANDED_INNER_EAP_PARAMS.add(new ExpandedEAPMethod( in TEST_DATA2_EXPANDED_INNER_EAP_PARAMS.add()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DExpandedEAPMethod.java35 public class ExpandedEAPMethod extends AuthParam { class
42 public ExpandedEAPMethod(int authType, int vendorID, long vendorType) { in ExpandedEAPMethod() method in ExpandedEAPMethod
58 public static ExpandedEAPMethod parse(ByteBuffer payload, int length, boolean inner) in parse()
73 return new ExpandedEAPMethod(authType, vendorID, vendorType); in parse()
89 if (!(thatObject instanceof ExpandedEAPMethod)) { in equals()
92 ExpandedEAPMethod that = (ExpandedEAPMethod) thatObject; in equals()
DEAPMethod.java90 return ExpandedEAPMethod.parse(payload, length, false); in parseAuthParam()
96 return ExpandedEAPMethod.parse(payload, length, true); in parseAuthParam()
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
DExpandedEAPMethod.java14 public class ExpandedEAPMethod implements AuthParam { class
20 public ExpandedEAPMethod(EAP.AuthInfoID authInfoID, int length, ByteBuffer payload) in ExpandedEAPMethod() method in ExpandedEAPMethod
38 public ExpandedEAPMethod(EAP.AuthInfoID authInfoID, int vendorID, long vendorType) { in ExpandedEAPMethod() method in ExpandedEAPMethod
58 } else if (thatObject == null || thatObject.getClass() != ExpandedEAPMethod.class) { in equals()
61 ExpandedEAPMethod that = (ExpandedEAPMethod) thatObject; in equals()
DEAP.java80 public static final int ExpandedEAPMethod = 1; field in EAP
90 ExpandedEAPMethod, enumConstant
135 sAuthIds.put(ExpandedEAPMethod, AuthInfoID.ExpandedEAPMethod); in sAuthIds.put() argument
DEAPMethod.java55 case ExpandedEAPMethod: in EAPMethod()
56 addAuthParam(new ExpandedEAPMethod(authInfoID, len, paramPayload)); in EAPMethod()
65 addAuthParam(new ExpandedEAPMethod(authInfoID, len, paramPayload)); in EAPMethod()
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
DMOManager.java8 import com.android.anqp.eap.ExpandedEAPMethod;
861 new ExpandedEAPMethod(EAP.AuthInfoID.ExpandedEAPMethod, in buildCredential()
865 new EAPMethod(eapMethodID, new ExpandedEAPMethod(EAP.AuthInfoID in buildCredential()