Home
last modified time | relevance | path

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

/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeConfigPayloadTest.java243 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigRequest()
280 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigResponse()
872 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testConstructIpv6PcscfWithValue()
880 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testConstructIpv6PcscfWithoutValue()
888 ConfigAttributeIpv6Pcscf attribute = in testDecodeIpv6PcscfWithValue()
889 new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR.getAddress()); in testDecodeIpv6PcscfWithValue()
897 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(new byte[0]); in testDecodeIpv6PcscfWithoutValue()
905 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testEncodeIpv6PcscfWithValue()
913 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testEncodeIpv6PcscfWithoutValue()
925 new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR)); in testPersistableBundleEncodeDecodeIpv6PscsfConfig()
[all …]
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/
H A DIkeSessionConfiguration.java32 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
107 ConfigAttributeIpv6Pcscf ip6Pcscf = (ConfigAttributeIpv6Pcscf) attr; in IkeSessionConfiguration()
H A DIkeSessionParams.java41 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
1583 return addConfigRequest(new ConfigAttributeIpv6Pcscf((Inet6Address) address)); in addPcscfServerRequest()
1605 return addConfigRequest(new ConfigAttributeIpv6Pcscf()); in addPcscfServerRequest()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
H A DIkeSessionConfigurationTest.java32 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
97 attributeList.add(new ConfigAttributeIpv6Pcscf(PCSCF_IPV6_ADDRESS)); in testBuildWithConfigPayload()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeConfigPayload.java300 return new ConfigAttributeIpv6Pcscf(value); in decodeSingleAttributeFrom()
1150 public static class ConfigAttributeIpv6Pcscf extends IkeConfigAttrIpv6AddressBase class in IkeConfigPayload
1153 public ConfigAttributeIpv6Pcscf(Inet6Address ipv6Address) { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
1162 public ConfigAttributeIpv6Pcscf() { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
1166 protected ConfigAttributeIpv6Pcscf(byte[] value) throws InvalidSyntaxException { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf