Home
last modified time | relevance | path

Searched refs:ConfigAttributeIpv4Pcscf (Results 1 – 6 of 6) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayloadTest.java57 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
238 assertEquals(IPV4_PCSCF_ADDR, ((ConfigAttributeIpv4Pcscf) att).address); in testDecodeConfigRequest()
275 assertEquals(IPV4_PCSCF_ADDR, ((ConfigAttributeIpv4Pcscf) att).address); in testDecodeConfigResponse()
608 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR); in testConstructIpv4PcscfWithValue()
616 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(); in testConstructIpv4PcscfWithoutValue()
624 ConfigAttributeIpv4Pcscf attribute = in testDecodeIpv4PcscfWithValue()
625 new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR.getAddress()); in testDecodeIpv4PcscfWithValue()
633 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(new byte[0]); in testDecodeIpv4PcscfWithoutValue()
641 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR); in testEncodeIpv4PcscfWithValue()
649 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(); in testEncodeIpv4PcscfWithoutValue()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionConfiguration.java30 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
105 ConfigAttributeIpv4Pcscf ip4Pcscf = (ConfigAttributeIpv4Pcscf) attr; in IkeSessionConfiguration()
DIkeSessionParams.java34 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
782 mConfigRequestList.add(new ConfigAttributeIpv4Pcscf((Inet4Address) address)); in addPcscfServerRequest()
801 mConfigRequestList.add(new ConfigAttributeIpv4Pcscf()); in addPcscfServerRequest()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayload.java239 configList.add(new ConfigAttributeIpv4Pcscf(value)); in decodeAttributeFrom()
671 public static class ConfigAttributeIpv4Pcscf extends IkeConfigAttrIpv4AddressBase class in IkeConfigPayload
674 public ConfigAttributeIpv4Pcscf(Inet4Address ipv4Address) { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf
683 public ConfigAttributeIpv4Pcscf() { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf
689 ConfigAttributeIpv4Pcscf(byte[] value) throws InvalidSyntaxException { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DChildSessionConfigurationTest.java33 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
77 private ConfigAttributeIpv4Pcscf mIpv4Pcscf;
100 mIpv4Pcscf = new ConfigAttributeIpv4Pcscf(IPV4_ADDRESS); in setUp()
DIkeSessionConfigurationTest.java31 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
97 attributeList.add(new ConfigAttributeIpv4Pcscf(PCSCF_IPV4_ADDRESS)); in testBuildWithConfigPayload()