Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayloadTest.java53 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeAppVersion;
935 ConfigAttributeAppVersion attribute = new ConfigAttributeAppVersion(APP_VERSION.getBytes()); in testDecodeAppVersionWithValue()
943 ConfigAttributeAppVersion attribute = new ConfigAttributeAppVersion(new byte[0]); in testDecodeAppVersionWithoutValue()
951 ConfigAttributeAppVersion attribute = new ConfigAttributeAppVersion(APP_VERSION); in testEncodeAppVersionWithValue()
960 ConfigAttributeAppVersion attribute = new ConfigAttributeAppVersion(); in testEncodeAppVersionWithoutValue()
969 verifyPersistableBundleEncodeDecodeIsLossless(new ConfigAttributeAppVersion(APP_VERSION)); in testPersistableBundleEncodeDecodeAppVersionConfig()
974 verifyPersistableBundleEncodeDecodeIsLossless(new ConfigAttributeAppVersion()); in testPersistableBundleEncodeDecodeAppVersionConfigEmpty()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayload.java288 return new ConfigAttributeAppVersion(value); in decodeSingleAttributeFrom()
1177 public static class ConfigAttributeAppVersion extends ConfigAttribute { class in IkeConfigPayload
1186 public ConfigAttributeAppVersion() { in ConfigAttributeAppVersion() method in IkeConfigPayload.ConfigAttributeAppVersion
1191 public ConfigAttributeAppVersion(String localAppVersion) { in ConfigAttributeAppVersion() method in IkeConfigPayload.ConfigAttributeAppVersion
1197 protected ConfigAttributeAppVersion(byte[] value) throws InvalidSyntaxException { in ConfigAttributeAppVersion() method in IkeConfigPayload.ConfigAttributeAppVersion
1222 if (!super.equals(o) || !(o instanceof ConfigAttributeAppVersion)) { in equals()
1226 ConfigAttributeAppVersion other = (ConfigAttributeAppVersion) o; in equals()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionConfiguration.java32 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeAppVersion;
104 ConfigAttributeAppVersion appVersionAttr = (ConfigAttributeAppVersion) attr; in IkeSessionConfiguration()
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionConfigurationTest.java34 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeAppVersion;
109 attributeList.add(new ConfigAttributeAppVersion(REMOTE_APP_VERSION)); in testBuildWithConfigPayload()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java4298 configAttributes.add(new IkeConfigPayload.ConfigAttributeAppVersion()); in buildIkeAuthReq()