HomeSort by relevance Sort by last modified time
    Searched refs:VendorSpecificAuth (Results 1 - 4 of 4) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
VendorSpecificAuth.java 32 public class VendorSpecificAuth extends AuthParam {
36 public VendorSpecificAuth(byte[] data) {
42 * Parse a VendorSpecificAuth from the given buffer.
46 * @return {@link VendorSpecificAuth}
49 public static VendorSpecificAuth parse(ByteBuffer payload, int length) {
52 return new VendorSpecificAuth(data);
64 if (!(thatObject instanceof VendorSpecificAuth)) {
67 VendorSpecificAuth that = (VendorSpecificAuth) thatObject;
78 return "VendorSpecificAuth{mData=" + Arrays.toString(mData) + "}"
    [all...]
EAPMethod.java 102 return VendorSpecificAuth.parse(payload, length);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/eap/
VendorSpecificAuthTest.java 29 * Unit tests for {@link com.android.server.wifi.hotspot2.anqp.eap.VendorSpecificAuth}.
42 VendorSpecificAuth.parse(ByteBuffer.wrap(new byte[0]), 1);
52 VendorSpecificAuth.parse(
57 * Verify that a VendorSpecificAuth with a empty data array is returned when parsing
64 VendorSpecificAuth expected = new VendorSpecificAuth(new byte[0]);
65 assertEquals(expected, VendorSpecificAuth.parse(ByteBuffer.wrap(TEST_DATA), 0));
69 * Verify that an expected VendorSpecificAuth is returned when parsing a buffer contained
76 VendorSpecificAuth expected = new VendorSpecificAuth(TEST_DATA)
    [all...]
EAPMethodTest.java 112 TEST_DATA2_VENDOR_SPECIFIC_PARAMS.add(new VendorSpecificAuth(

Completed in 106 milliseconds