Home
last modified time | relevance | path

Searched refs:fromPersistableBundle (Results 1 – 24 of 24) sorted by relevance

/aosp14/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
H A DTunnelConnectionParamsUtils.java50 public static IkeTunnelConnectionParams fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in TunnelConnectionParamsUtils
97 IkeSessionParamsUtils.fromPersistableBundle(ikeBundle); in deserializeIkeParams()
99 TunnelModeChildSessionParamsUtils.fromPersistableBundle(childBundle); in deserializeIkeParams()
H A DTunnelModeChildSessionParamsUtils.java188 tsBundle, IkeTrafficSelectorUtils::fromPersistableBundle); in getTsFromPersistableBundle()
193 public static TunnelModeChildSessionParams fromPersistableBundle( in fromPersistableBundle() method in TunnelModeChildSessionParamsUtils
204 proposalBundle, ChildSaProposalUtils::fromPersistableBundle); in fromPersistableBundle()
H A DIkeSessionParamsUtils.java182 public static IkeSessionParams fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in IkeSessionParamsUtils
193 proposalBundle, IkeSaProposalUtils::fromPersistableBundle); in fromPersistableBundle()
199 IkeIdentificationUtils.fromPersistableBundle( in fromPersistableBundle()
202 IkeIdentificationUtils.fromPersistableBundle( in fromPersistableBundle()
494 EapSessionConfigUtils.fromPersistableBundle(eapBundle); in setBuilderByReadingPersistableBundle()
H A DIkeTrafficSelectorUtils.java44 public static IkeTrafficSelector fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in IkeTrafficSelectorUtils
H A DChildSaProposalUtils.java46 public static ChildSaProposal fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in ChildSaProposalUtils
H A DIkeSaProposalUtils.java54 public static IkeSaProposal fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in IkeSaProposalUtils
H A DEapSessionConfigUtils.java97 public static EapSessionConfig fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in EapSessionConfigUtils
271 EapSessionConfigUtils.fromPersistableBundle(eapSessionConfigBundle); in setBuilderByReadingPersistableBundle()
H A DIkeIdentificationUtils.java112 public static IkeIdentification fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle() method in IkeIdentificationUtils
/aosp14/frameworks/base/tests/vcn/java/android/net/vcn/persistablebundleutils/
H A DSaProposalUtilsTest.java56 final SaProposal resultProposal = IkeSaProposalUtils.fromPersistableBundle(bundle); in testPersistableBundleEncodeDecodeIsLosslessIkeProposal()
78 final SaProposal resultProposal = ChildSaProposalUtils.fromPersistableBundle(bundle); in testPersistableBundleEncodeDecodeIsLosslessChildProposal()
H A DTunnelConnectionParamsUtilsTest.java50 TunnelConnectionParamsUtils.fromPersistableBundle( in testIkeTunnelConnectionParamsToFromPersistableBundle()
H A DIkeTrafficSelectorUtilsTest.java51 final IkeTrafficSelector resultTs = IkeTrafficSelectorUtils.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
H A DIkeIdentificationUtilsTest.java47 final IkeIdentification result = IkeIdentificationUtils.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
H A DEapSessionConfigUtilsTest.java54 final EapSessionConfig resultConfig = EapSessionConfigUtils.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
H A DTunnelModeChildSessionParamsUtilsTest.java54 TunnelModeChildSessionParamsUtils.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
H A DIkeSessionParamsUtilsTest.java75 final IkeSessionParams result = IkeSessionParamsUtils.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
/aosp14/frameworks/base/core/java/android/net/vcn/
H A DVcnUnderlyingNetworkTemplate.java163 public static VcnUnderlyingNetworkTemplate fromPersistableBundle( in fromPersistableBundle() method in VcnUnderlyingNetworkTemplate
170 return VcnWifiUnderlyingNetworkTemplate.fromPersistableBundle(in); in fromPersistableBundle()
172 return VcnCellUnderlyingNetworkTemplate.fromPersistableBundle(in); in fromPersistableBundle()
H A DVcnWifiUnderlyingNetworkTemplate.java90 public static VcnWifiUnderlyingNetworkTemplate fromPersistableBundle( in fromPersistableBundle() method in VcnWifiUnderlyingNetworkTemplate
H A DVcnGatewayConnectionConfig.java281 TunnelConnectionParamsUtils.fromPersistableBundle(tunnelConnectionParamsBundle); in VcnGatewayConnectionConfig()
297 VcnUnderlyingNetworkTemplate::fromPersistableBundle); in VcnGatewayConnectionConfig()
H A DVcnCellUnderlyingNetworkTemplate.java170 public static VcnCellUnderlyingNetworkTemplate fromPersistableBundle( in fromPersistableBundle() method in VcnCellUnderlyingNetworkTemplate
/aosp14/frameworks/base/tests/vcn/java/android/net/vcn/
H A DVcnCellUnderlyingNetworkTemplateTest.java174 VcnUnderlyingNetworkTemplate.fromPersistableBundle( in testPersistableBundle()
186 VcnUnderlyingNetworkTemplate.fromPersistableBundle( in testPersistableBundleWithCapabilities()
H A DVcnWifiUnderlyingNetworkTemplateTest.java108 VcnUnderlyingNetworkTemplate.fromPersistableBundle( in testPersistableBundle()
/aosp14/frameworks/base/services/core/java/com/android/server/vcn/util/
H A DPersistableBundleUtils.java81 T fromPersistableBundle(PersistableBundle in); in fromPersistableBundle() method
183 result.add(deserializer.fromPersistableBundle(item)); in toList()
293 final K key = keyDeserializer.fromPersistableBundle(keyBundle); in toMap()
294 final V value = valueDeserializer.fromPersistableBundle(valueBundle); in toMap()
/aosp14/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java221 : TunnelConnectionParamsUtils.fromPersistableBundle(bundle); in VpnProfile()
337 tempIkeTunConnParams = TunnelConnectionParamsUtils.fromPersistableBundle(bundle); in decode()
/aosp14/frameworks/base/tests/vcn/java/com/android/server/vcn/util/
H A DPersistableBundleUtilsTest.java212 PersistableBundleUtils.INTEGER_DESERIALIZER.fromPersistableBundle(integerBundle); in testIntegerConversionLossless()