Home
last modified time | relevance | path

Searched refs:toPersistableBundle (Results 1 – 25 of 30) sorted by relevance

12

/packages/modules/IPsec/src/java/android/net/eap/
DEapSessionConfig.java116 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig
124 EapMethodConfig::toPersistableBundle); in toPersistableBundle()
468 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig.EapMethodConfig
546 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig.EapUiccConfig
547 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
693 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig.EapAkaPrimeConfig
694 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
780 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig.EapMsChapV2Config
781 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
888 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in EapSessionConfig.EapTtlsConfig
[all …]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DPersistableBundlable.java31 public abstract @NonNull PersistableBundle toPersistableBundle(); in toPersistableBundle() method in PersistableBundlable
45 List<String> keys = new ArrayList(toPersistableBundle().keySet()); in hashCode()
57 dest.writeParcelable(toPersistableBundle(), flags); in writeToParcel()
70 return isPersistableBundleEquals(pb1.toPersistableBundle(), pb2.toPersistableBundle()); in isPersistableBundlableEquals()
DStoreUtils.java152 bundle.putPersistableBundle(attrName, bundlable.toPersistableBundle()); in putPersistableBundlableIfNotNull()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java378 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeSessionParams
390 Arrays.asList(mSaProposals), IkeSaProposal::toPersistableBundle); in toPersistableBundle()
393 result.putPersistableBundle(LOCAL_ID_KEY, mLocalIdentification.toPersistableBundle()); in toPersistableBundle()
394 result.putPersistableBundle(REMOTE_ID_KEY, mRemoteIdentification.toPersistableBundle()); in toPersistableBundle()
395 result.putPersistableBundle(LOCAL_AUTH_KEY, mLocalAuthConfig.toPersistableBundle()); in toPersistableBundle()
396 result.putPersistableBundle(REMOTE_AUTH_KEY, mRemoteAuthConfig.toPersistableBundle()); in toPersistableBundle()
400 Arrays.asList(mConfigRequests), ConfigAttribute::toPersistableBundle); in toPersistableBundle()
758 protected PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeSessionParams.IkeAuthConfig
821 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeSessionParams.IkeAuthPskConfig
822 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
[all …]
DChildSessionParams.java143 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in ChildSessionParams
150 Arrays.asList(mSaProposals), ChildSaProposal::toPersistableBundle); in toPersistableBundle()
156 IkeTrafficSelector::toPersistableBundle); in toPersistableBundle()
162 IkeTrafficSelector::toPersistableBundle); in toPersistableBundle()
DIkeKeyIdIdentification.java71 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeKeyIdIdentification
72 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DIkeRfc822AddrIdentification.java78 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeRfc822AddrIdentification
79 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DIkeFqdnIdentification.java83 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeFqdnIdentification
84 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DIkeIpv4AddrIdentification.java80 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeIpv4AddrIdentification
81 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DIkeIpv6AddrIdentification.java81 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeIpv6AddrIdentification
82 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DIkeDerAsn1DnIdentification.java92 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeDerAsn1DnIdentification
93 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DTunnelModeChildSessionParams.java125 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in TunnelModeChildSessionParams
126 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
131 TunnelModeChildConfigAttribute::toPersistableBundle); in toPersistableBundle()
DIkeSaProposal.java127 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeSaProposal
128 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DChildSaProposal.java158 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in ChildSaProposal
159 final PersistableBundle result = super.toPersistableBundle(); in toPersistableBundle()
DSaProposal.java301 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in SaProposal
309 EncryptionTransform::toPersistableBundle); in toPersistableBundle()
DIkeIdentification.java132 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeIdentification
DIkeTrafficSelector.java257 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in IkeTrafficSelector
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
DProvisioningParams.java400 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in ProvisioningParams
512 return createBuilderFromPersistableBundle(toPersistableBundle()); in toBuilder()
517 return "ProvisioningParams values: " + toPersistableBundle().toString(); in toString()
534 toPersistableBundle().saveToXml(serializer); in save()
DDisclaimersParam.java87 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in DisclaimersParam
DPackageDownloadInfo.java127 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in PackageDownloadInfo
DWifiInfo.java140 public PersistableBundle toPersistableBundle() { in toPersistableBundle() method in WifiInfo
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java275 PersistableBundle bundle = sessionParams.toPersistableBundle(); in testIkeSessionParamsEncodeDecodeIsLossLess()
288 PersistableBundle bundle = sessionParams.toPersistableBundle(); in testEncodeIkeSessionParamsWithConfiguredNetwork()
302 PersistableBundle bundle = sessionParams.toPersistableBundle(); in testEncodeIkeSessionParamsWith3gppExtension()
763 PersistableBundle bundle = config.toPersistableBundle(); in verifyPersistableBundleEncodeDecodeIsLossless()
DChildSessionParamsTest.java92 PersistableBundle bundle = params.toPersistableBundle(); in verifyPersistableBundleEncodeDecodeIsLossless()
DIkeTrafficSelectorTest.java180 PersistableBundle bundle = ts.toPersistableBundle(); in verifyPersistableBundleEncodeDecodeIsLossless()
/packages/modules/IPsec/tests/iketests/src/java/android/net/eap/
DEapSessionConfigTest.java58 PersistableBundle bundle = config.toPersistableBundle(); in verifyPersistableBundleEncodeDecodeIsLossless()
65 PersistableBundle bundle = config.toPersistableBundle(); in verifyPersistableBundleEncodeDecodeIsLossless()

12