Searched refs:reservedBytes (Results 1 – 6 of 6) sorted by relevance
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/ |
D | EapSimAkaTypeData.java | 61 byte[] reservedBytes) { in EapSimAkaTypeData() argument 65 mReservedBytes = reservedBytes.clone(); in EapSimAkaTypeData() 132 byte[] reservedBytes = new byte[RESERVED_BYTES_LEN]; in decode() 133 byteBuffer.get(reservedBytes); in decode() 153 T eapSimAkaTypeData = getInstance(eapSubType, attributeMap, reservedBytes); in decode() 173 byte[] reservedBytes); in getInstance() argument
|
D | EapAkaPrimeTypeData.java | 44 byte[] reservedBytes) { in EapAkaPrimeTypeData() argument 45 super(eapSubType, attributeMap, reservedBytes); in EapAkaPrimeTypeData() 99 byte[] reservedBytes) { in getInstance() argument 100 return new EapAkaPrimeTypeData(eapSubtype, attributeMap, reservedBytes); in getInstance()
|
D | EapSimTypeData.java | 73 byte[] reservedBytes) { in EapSimTypeData() argument 74 super(eapSubType, attributeMap, reservedBytes); in EapSimTypeData() 129 byte[] reservedBytes) { in getInstance() argument 130 return new EapSimTypeData(eapSubtype, attributeMap, reservedBytes); in getInstance()
|
D | EapAkaTypeData.java | 79 byte[] reservedBytes) { in EapAkaTypeData() argument 80 super(eapSubType, attributeMap, reservedBytes); in EapAkaTypeData() 141 byte[] reservedBytes) { in getInstance() argument 142 return new EapAkaTypeData(eapSubtype, attributeMap, reservedBytes); in getInstance()
|
D | EapSimAkaAttribute.java | 151 @VisibleForTesting public final byte[] reservedBytes = new byte[RESERVED_BYTES_LEN]; field in EapSimAkaAttribute.EapSimAkaReservedBytesAttribute 159 buffer.get(reservedBytes); in EapSimAkaReservedBytesAttribute() 171 int attributeType, int lengthInBytes, byte[] reservedBytes) in EapSimAkaReservedBytesAttribute() argument 175 if (reservedBytes.length != RESERVED_BYTES_LEN) { in EapSimAkaReservedBytesAttribute() 179 reservedBytes, in EapSimAkaReservedBytesAttribute() 181 this.reservedBytes, in EapSimAkaReservedBytesAttribute() 190 buffer.put(reservedBytes); in encode() 668 public AtMac(byte[] reservedBytes, byte[] mac) throws EapSimAkaInvalidAttributeException { in AtMac() argument 669 super(EAP_AT_MAC, ATTR_LENGTH, reservedBytes); in AtMac() 691 return new AtMac(reservedBytes, new byte[MAC_LENGTH]); in getAtMacWithMacCleared()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/ |
D | AtMacTest.java | 117 assertArrayEquals(RESERVED_BYTES, clearedMac.reservedBytes); in testGetAtMacWithMacCleared()
|