Home
last modified time | relevance | path

Searched refs:ConfigAttributeIpv6Pcscf (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayloadTest.java61 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
242 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigRequest()
279 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigResponse()
766 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testConstructIpv6PcscfWithValue()
774 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testConstructIpv6PcscfWithoutValue()
782 ConfigAttributeIpv6Pcscf attribute = in testDecodeIpv6PcscfWithValue()
783 new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR.getAddress()); in testDecodeIpv6PcscfWithValue()
791 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(new byte[0]); in testDecodeIpv6PcscfWithoutValue()
799 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testEncodeIpv6PcscfWithValue()
807 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testEncodeIpv6PcscfWithoutValue()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionConfiguration.java31 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
109 ConfigAttributeIpv6Pcscf ip6Pcscf = (ConfigAttributeIpv6Pcscf) attr; in IkeSessionConfiguration()
DIkeSessionParams.java35 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
784 mConfigRequestList.add(new ConfigAttributeIpv6Pcscf((Inet6Address) address)); in addPcscfServerRequest()
804 mConfigRequestList.add(new ConfigAttributeIpv6Pcscf()); in addPcscfServerRequest()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayload.java242 configList.add(new ConfigAttributeIpv6Pcscf(value)); in decodeAttributeFrom()
986 public static class ConfigAttributeIpv6Pcscf extends IkeConfigAttrIpv6AddressBase class in IkeConfigPayload
989 public ConfigAttributeIpv6Pcscf(Inet6Address ipv6Address) { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
998 public ConfigAttributeIpv6Pcscf() { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
1002 protected ConfigAttributeIpv6Pcscf(byte[] value) throws InvalidSyntaxException { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionConfigurationTest.java32 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
98 attributeList.add(new ConfigAttributeIpv6Pcscf(PCSCF_IPV6_ADDRESS)); in testBuildWithConfigPayload()