Home
last modified time | relevance | path

Searched refs:ChildSaNotFoundException (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/
H A DChildSaNotFoundException.java31 public final class ChildSaNotFoundException extends IkeProtocolException { class
44 public ChildSaNotFoundException(int spi) { in ChildSaNotFoundException() method in ChildSaNotFoundException
56 public ChildSaNotFoundException(int spi, byte[] notifyData) { in ChildSaNotFoundException() method in ChildSaNotFoundException
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeNotifyPayloadTest.java45 import android.net.ipsec.test.ike.exceptions.ChildSaNotFoundException;
356 ChildSaNotFoundException exception = in testValidateAndBuildChildSaNotFoundException()
357 (ChildSaNotFoundException) errNotify.validateAndBuildIkeException(); in testValidateAndBuildChildSaNotFoundException()
360 exception, ERROR_TYPE_CHILD_SA_NOT_FOUND, ChildSaNotFoundException.class); in testValidateAndBuildChildSaNotFoundException()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeNotifyPayload.java39 import android.net.ipsec.ike.exceptions.ChildSaNotFoundException;
537 return new ChildSaNotFoundException(spi, notifyData); in validateAndBuildIkeException()