Home
last modified time | relevance | path

Searched refs:decodeAttributes (Results 1 – 2 of 2) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeSaPayloadTest.java302 .decodeAttributes(anyInt(), any()); in testDecodeEncryptionTransform()
320 doReturn(attributeList).when(mMockedAttributeDecoder).decodeAttributes(anyInt(), any()); in testDecodeEncryptionTransformWithInvalidKeyLength()
364 .decodeAttributes(anyInt(), any()); in testDecodePrfTransform()
399 .decodeAttributes(anyInt(), any()); in testDecodeIntegrityTransform()
415 .decodeAttributes(anyInt(), any()); in testDecodeIntegrityTransformWithUnrecognizedAttribute()
450 .decodeAttributes(anyInt(), any()); in testDecodeDhGroupTransform()
485 .decodeAttributes(anyInt(), any()); in testDecodeEsnTransform()
502 .decodeAttributes(anyInt(), any()); in testDecodeEsnTransformWithUnsupportedId()
517 .decodeAttributes(anyInt(), any()); in testDecodeEsnTransformWithUnrecognizedAttribute()
545 .decodeAttributes(anyInt(), any()); in testDecodeUnrecognizedTransform()
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeSaPayload.java1002 List<Attribute> decodeAttributes(int length, ByteBuffer inputBuffer) in decodeAttributes() method
1090 List<Attribute> attributeList = sAttributeDecoder.decodeAttributes(length, inputBuffer); in readFrom()
1112 public List<Attribute> decodeAttributes(int length, ByteBuffer inputBuffer) in decodeAttributes() method in IkeSaPayload.Transform.AttributeDecoderImpl