/aosp14/frameworks/base/core/java/android/net/vcn/persistablebundleutils/ |
H A D | EapSessionConfigUtils.java | 56 public static PersistableBundle toPersistableBundle(@NonNull EapSessionConfig config) { in toPersistableBundle() method in EapSessionConfigUtils 65 EapSimConfigUtils.toPersistableBundle(config.getEapSimConfig())); in toPersistableBundle() 71 EapTtlsConfigUtils.toPersistableBundle(config.getEapTtlsConfig())); in toPersistableBundle() 77 EapAkaConfigUtils.toPersistableBundle(config.getEapAkaConfig())); in toPersistableBundle() 83 EapMsChapV2ConfigUtils.toPersistableBundle(config.getEapMsChapV2Config())); in toPersistableBundle() 162 public static PersistableBundle toPersistableBundle(EapSimConfig config) { in toPersistableBundle() method in EapSessionConfigUtils.EapSimConfigUtils 163 return EapUiccConfigUtils.toPersistableBundle(config); in toPersistableBundle() 175 public static PersistableBundle toPersistableBundle(@NonNull EapAkaConfig config) { in toPersistableBundle() method in EapSessionConfigUtils.EapAkaConfigUtils 176 return EapUiccConfigUtils.toPersistableBundle(config); in toPersistableBundle() 192 final PersistableBundle result = EapUiccConfigUtils.toPersistableBundle(config); in toPersistableBundle() [all …]
|
H A D | IkeSessionParamsUtils.java | 134 params.getSaProposals(), IkeSaProposalUtils::toPersistableBundle); in toPersistableBundle() 272 return IkeAuthPskConfigUtils.toPersistableBundle( in toPersistableBundle() 276 return IkeAuthDigitalSignConfigUtils.toPersistableBundle( in toPersistableBundle() 280 return IkeAuthDigitalSignConfigUtils.toPersistableBundle( in toPersistableBundle() 284 return IkeAuthEapConfigUtils.toPersistableBundle( in toPersistableBundle() 346 public static PersistableBundle toPersistableBundle( in toPersistableBundle() method in IkeSessionParamsUtils.IkeAuthPskConfigUtils 382 public static PersistableBundle toPersistableBundle( in toPersistableBundle() method in IkeSessionParamsUtils.IkeAuthDigitalSignConfigUtils 412 public static PersistableBundle toPersistableBundle( in toPersistableBundle() method in IkeSessionParamsUtils.IkeAuthDigitalSignConfigUtils 477 public static PersistableBundle toPersistableBundle( in toPersistableBundle() method in IkeSessionParamsUtils.IkeAuthEapConfigUtils 481 EapSessionConfigUtils.toPersistableBundle(config.getEapConfig())); in toPersistableBundle() [all …]
|
H A D | SaProposalUtilsBase.java | 59 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in SaProposalUtilsBase.EncryptionAlgoKeyLenPair 75 static PersistableBundle toPersistableBundle(SaProposal proposal) { in toPersistableBundle() method in SaProposalUtilsBase 84 encryptAlgoKeyLenPairs, EncryptionAlgoKeyLenPair::toPersistableBundle); in toPersistableBundle()
|
H A D | TunnelConnectionParamsUtils.java | 38 public static PersistableBundle toPersistableBundle(@NonNull IkeTunnelConnectionParams params) { in toPersistableBundle() method in TunnelConnectionParamsUtils 80 IkeSessionParamsUtils.toPersistableBundle(ikeParams.getIkeSessionParams())); in serializeIkeParams() 83 TunnelModeChildSessionParamsUtils.toPersistableBundle( in serializeIkeParams()
|
H A D | TunnelModeChildSessionParamsUtils.java | 132 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in TunnelModeChildSessionParamsUtils.ConfigRequest 148 public static PersistableBundle toPersistableBundle( in toPersistableBundle() method in TunnelModeChildSessionParamsUtils 154 params.getSaProposals(), ChildSaProposalUtils::toPersistableBundle); in toPersistableBundle() 160 IkeTrafficSelectorUtils::toPersistableBundle); in toPersistableBundle() 166 IkeTrafficSelectorUtils::toPersistableBundle); in toPersistableBundle() 177 PersistableBundleUtils.fromList(reqList, ConfigRequest::toPersistableBundle); in toPersistableBundle()
|
H A D | ChildSaProposalUtils.java | 40 public static PersistableBundle toPersistableBundle(ChildSaProposal proposal) { in toPersistableBundle() method in ChildSaProposalUtils 41 return SaProposalUtilsBase.toPersistableBundle(proposal); in toPersistableBundle()
|
H A D | IkeSaProposalUtils.java | 42 public static PersistableBundle toPersistableBundle(IkeSaProposal proposal) { in toPersistableBundle() method in IkeSaProposalUtils 43 final PersistableBundle result = SaProposalUtilsBase.toPersistableBundle(proposal); in toPersistableBundle()
|
H A D | IkeTrafficSelectorUtils.java | 64 public static PersistableBundle toPersistableBundle(@NonNull IkeTrafficSelector ts) { in toPersistableBundle() method in IkeTrafficSelectorUtils
|
H A D | IkeIdentificationUtils.java | 66 public static PersistableBundle toPersistableBundle(@NonNull IkeIdentification ikeId) { in toPersistableBundle() method in IkeIdentificationUtils
|
/aosp14/frameworks/base/tests/vcn/java/com/android/server/vcn/util/ |
H A D | PersistableBundleUtilsTest.java | 60 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in PersistableBundleUtilsTest.TestKey 115 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in PersistableBundleUtilsTest.TestClass 167 PersistableBundleUtils.fromList(sourceList, TestClass::toPersistableBundle); in testListConversionLossless() 189 sourceMap, TestKey::toPersistableBundle, TestClass::toPersistableBundle); in testMapConversionLossless() 210 PersistableBundleUtils.INTEGER_SERIALIZER.toPersistableBundle(testInt); in testIntegerConversionLossless() 233 .toPersistableBundle()); in getTestBundle()
|
/aosp14/frameworks/base/tests/vcn/java/android/net/vcn/persistablebundleutils/ |
H A D | SaProposalUtilsTest.java | 55 final PersistableBundle bundle = IkeSaProposalUtils.toPersistableBundle(proposal); in testPersistableBundleEncodeDecodeIsLosslessIkeProposal() 77 final PersistableBundle bundle = ChildSaProposalUtils.toPersistableBundle(proposal); in testPersistableBundleEncodeDecodeIsLosslessChildProposal()
|
H A D | TunnelConnectionParamsUtilsTest.java | 51 TunnelConnectionParamsUtils.toPersistableBundle(params))); in testIkeTunnelConnectionParamsToFromPersistableBundle()
|
H A D | IkeTrafficSelectorUtilsTest.java | 50 final PersistableBundle bundle = IkeTrafficSelectorUtils.toPersistableBundle(ts); in verifyPersistableBundleEncodeDecodeIsLossless()
|
H A D | IkeIdentificationUtilsTest.java | 46 final PersistableBundle bundle = IkeIdentificationUtils.toPersistableBundle(id); in verifyPersistableBundleEncodeDecodeIsLossless()
|
H A D | EapSessionConfigUtilsTest.java | 53 final PersistableBundle bundle = EapSessionConfigUtils.toPersistableBundle(config); in verifyPersistableBundleEncodeDecodeIsLossless()
|
H A D | TunnelModeChildSessionParamsUtilsTest.java | 52 TunnelModeChildSessionParamsUtils.toPersistableBundle(params); in verifyPersistableBundleEncodeDecodeIsLossless()
|
/aosp14/frameworks/base/core/java/android/net/vcn/ |
H A D | VcnConfig.java | 209 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in VcnConfig 217 VcnGatewayConnectionConfig::toPersistableBundle); in toPersistableBundle() 258 out.writeParcelable(toPersistableBundle(), flags); in writeToParcel()
|
H A D | VcnWifiUnderlyingNetworkTemplate.java | 123 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in VcnWifiUnderlyingNetworkTemplate 124 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
|
H A D | VcnGatewayConnectionConfig.java | 505 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in VcnGatewayConnectionConfig 509 TunnelConnectionParamsUtils.toPersistableBundle(mTunnelConnectionParams); in toPersistableBundle() 517 VcnUnderlyingNetworkTemplate::toPersistableBundle); in toPersistableBundle()
|
H A D | VcnCellUnderlyingNetworkTemplate.java | 233 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in VcnCellUnderlyingNetworkTemplate 234 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
|
/aosp14/frameworks/base/tests/vcn/java/android/net/vcn/ |
H A D | VcnCellUnderlyingNetworkTemplateTest.java | 175 networkPriority.toPersistableBundle())); in testPersistableBundle() 187 networkPriority.toPersistableBundle())); in testPersistableBundleWithCapabilities()
|
H A D | VcnConfigTest.java | 143 assertEquals(config, new VcnConfig(config.toPersistableBundle())); in testPersistableBundle() 150 assertEquals(config, new VcnConfig(config.toPersistableBundle())); in testPersistableBundleWithRestrictedTransports()
|
H A D | VcnGatewayConnectionConfigTest.java | 296 assertEquals(config, new VcnGatewayConnectionConfig(config.toPersistableBundle())); in testPersistableBundle() 304 assertEquals(config, new VcnGatewayConnectionConfig(config.toPersistableBundle())); in testPersistableBundleWithOptions() 309 PersistableBundle configBundle = buildTestConfig().toPersistableBundle(); in testParsePersistableBundleWithoutVcnUnderlyingNetworkTemplates()
|
H A D | VcnWifiUnderlyingNetworkTemplateTest.java | 109 networkPriority.toPersistableBundle())); in testPersistableBundle()
|
/aosp14/frameworks/base/services/core/java/com/android/server/vcn/util/ |
H A D | PersistableBundleUtils.java | 66 PersistableBundle toPersistableBundle(T obj); in toPersistableBundle() method 160 result.putPersistableBundle(key, serializer.toPersistableBundle(in.get(i))); in fromList() 251 result.putPersistableBundle(keyKey, keySerializer.toPersistableBundle(entry.getKey())); in fromMap() 253 valueKey, valueSerializer.toPersistableBundle(entry.getValue())); in fromMap()
|