HomeSort by relevance Sort by last modified time
    Searched defs:ExpandedEAPMethod (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
ExpandedEAPMethod.java 35 public class ExpandedEAPMethod extends AuthParam {
42 public ExpandedEAPMethod(int authType, int vendorID, long vendorType) {
49 * Parse a ExpandedEAPMethod from the given buffer.
54 * @return {@link ExpandedEAPMethod}
58 public static ExpandedEAPMethod parse(ByteBuffer payload, int length, boolean inner)
73 return new ExpandedEAPMethod(authType, vendorID, vendorType);
89 if (!(thatObject instanceof ExpandedEAPMethod)) {
92 ExpandedEAPMethod that = (ExpandedEAPMethod) thatObject;
103 return "ExpandedEAPMethod{mVendorID=" + mVendorID + " mVendorType=" + mVendorType + "}"
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/eap/
ExpandedEAPMethodTest.java 30 * Unit tests for {@link com.android.server.wifi.hotspot2.anqp.eap.ExpandedEAPMethod}.
46 ExpandedEAPMethod.parse(
47 ByteBuffer.wrap(new byte[0]), ExpandedEAPMethod.EXPECTED_LENGTH_VALUE, false);
58 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES),
59 ExpandedEAPMethod.EXPECTED_LENGTH_VALUE - 1, false);
69 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES, 0, TEST_DATA_BYTES.length - 1),
70 ExpandedEAPMethod.EXPECTED_LENGTH_VALUE, false);
74 * Verify that an expected ExpandedEAPMethod is returned when parsing the buffer for a
81 ExpandedEAPMethod expected = new ExpandedEAPMethod(
    [all...]

Completed in 196 milliseconds