Home
last modified time | relevance | path

Searched refs:fromParcel (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/keystore/tests/src/android/security/
DParcelableKeyGenParameterSpecTest.java133 ParcelableKeyGenParameterSpec fromParcel = in testParcelingWithAllValues() local
135 validateSpecValues(fromParcel.getSpec(), UID, ALIAS); in testParcelingWithAllValues()
145 KeyGenParameterSpec fromParcel = ParcelableKeyGenParameterSpec.CREATOR in testParcelingWithNullValues() local
148 assertThat(fromParcel.getKeystoreAlias(), is(ALIAS)); in testParcelingWithNullValues()
149 assertThat(fromParcel.getPurposes(), is(KEY_PURPOSES)); in testParcelingWithNullValues()
150 assertThat(fromParcel.getCertificateNotBefore(), is(new Date(0L))); in testParcelingWithNullValues()
151 assertThat(fromParcel.getCertificateNotAfter(), is(new Date(2461449600000L))); in testParcelingWithNullValues()
165 KeyGenParameterSpec fromParcel = in testParcelingRSAAlgoParameter() local
168 (RSAKeyGenParameterSpec) fromParcel.getAlgorithmParameterSpec(); in testParcelingRSAAlgoParameter()
183 KeyGenParameterSpec fromParcel = in testParcelingECAlgoParameter() local
[all …]
/frameworks/base/tests/Internal/src/android/app/
DWallpaperInfoTest.java64 WallpaperInfo fromParcel = WallpaperInfo.CREATOR.createFromParcel(parcel); in testSupportsAmbientMode() local
66 fromParcel.supportsAmbientMode()); in testSupportsAmbientMode()
90 WallpaperInfo fromParcel = WallpaperInfo.CREATOR.createFromParcel(parcel); in testGetSettingsSliceUri() local
92 0, expectedUri.compareTo(fromParcel.getSettingsSliceUri())); in testGetSettingsSliceUri()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/
DTimestampedScoredNetworkTest.java63 TimestampedScoredNetwork fromParcel = TimestampedScoredNetwork.CREATOR.createFromParcel(parcel); in testParcel() local
65 assertThat(fromParcel.getScore()).isEqualTo(impl.getScore()); in testParcel()
66 assertThat(fromParcel.getUpdatedTimestampMillis()).isEqualTo(impl.getUpdatedTimestampMillis()); in testParcel()
/frameworks/base/core/java/android/hardware/soundtrigger/
DSoundTrigger.java148 return ModuleProperties.fromParcel(in);
156 private static ModuleProperties fromParcel(Parcel in) { in fromParcel() method in SoundTrigger.ModuleProperties
334 return Keyphrase.fromParcel(in);
342 private static Keyphrase fromParcel(Parcel in) { in fromParcel() method in SoundTrigger.Keyphrase
444 return KeyphraseSoundModel.fromParcel(in);
452 private static KeyphraseSoundModel fromParcel(Parcel in) { in fromParcel() method in SoundTrigger.KeyphraseSoundModel
524 return GenericSoundModel.fromParcel(in);
542 private static GenericSoundModel fromParcel(Parcel in) { in fromParcel() method in SoundTrigger.GenericSoundModel
754 return RecognitionEvent.fromParcel(in);
763 protected static RecognitionEvent fromParcel(Parcel in) { in fromParcel() method in SoundTrigger.RecognitionEvent
[all …]
/frameworks/base/core/tests/coretests/src/android/security/keystore/recovery/
DKeyDerivationParamsTest.java70 KeyDerivationParams fromParcel = in writeToThenReadFromParcel() local
73 return fromParcel; in writeToThenReadFromParcel()
DRecoveryCertPathTest.java71 RecoveryCertPath fromParcel = RecoveryCertPath.CREATOR.createFromParcel(parcel); in writeToThenReadFromParcel() local
73 return fromParcel; in writeToThenReadFromParcel()
DKeyChainProtectionParamsTest.java97 KeyChainProtectionParams fromParcel = in writeToThenReadFromParcel() local
100 return fromParcel; in writeToThenReadFromParcel()
DKeyChainSnapshotTest.java211 KeyChainSnapshot fromParcel = KeyChainSnapshot.CREATOR.createFromParcel(parcel); in writeToThenReadFromParcel() local
213 return fromParcel; in writeToThenReadFromParcel()
/frameworks/base/wifi/tests/src/android/net/wifi/p2p/
DWifiP2pInfoTest.java78 WifiP2pInfo fromParcel = WifiP2pInfo.CREATOR.createFromParcel(parcelR); in testParcelOperation() local
81 assertEquals(info.toString(), fromParcel.toString()); in testParcelOperation()
DWifiP2pDeviceListTest.java71 WifiP2pDeviceList fromParcel = WifiP2pDeviceList.CREATOR.createFromParcel(parcelR); in testListOperations() local
73 assertEquals(list.toString(), fromParcel.toString()); in testListOperations()
DWifiP2pWfdInfoTest.java105 WifiP2pWfdInfo fromParcel = WifiP2pWfdInfo.CREATOR.createFromParcel(parcelR); in testParcelOperation() local
108 assertEquals(mSourceInfo.toString(), fromParcel.toString()); in testParcelOperation()
DWifiP2pGroupTest.java87 WifiP2pGroup fromParcel = WifiP2pGroup.CREATOR.createFromParcel(parcelR); in testSetterGetter() local
89 assertEquals(group.toString(), fromParcel.toString()); in testSetterGetter()
DWifiP2pGroupListTest.java107 WifiP2pGroupList fromParcel = WifiP2pGroupList.CREATOR.createFromParcel(parcelR); in testListOperations() local
109 assertEquals(list.toString(), fromParcel.toString()); in testListOperations()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DPhysicalChannelConfigTest.java75 PhysicalChannelConfig fromParcel = PhysicalChannelConfig.CREATOR.createFromParcel(parcel); in testParcel() local
77 assertThat(fromParcel).isEqualTo(config); in testParcel()
DBarringInfoTest.java83 BarringInfo fromParcel = BarringInfo.CREATOR.createFromParcel(parcel); in testParcel() local
85 assertEquals(fromParcel, info); in testParcel()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/data/
DEuiccRulesAuthTableTest.java228 EuiccRulesAuthTable fromParcel = EuiccRulesAuthTable.CREATOR.createFromParcel(parcel); in testWriteToParcel() local
230 assertEquals(rat, fromParcel); in testWriteToParcel()
238 fromParcel = EuiccRulesAuthTable.CREATOR.createFromParcel(parcel); in testWriteToParcel()
240 assertEquals(rat, fromParcel); in testWriteToParcel()
255 fromParcel = EuiccRulesAuthTable.CREATOR.createFromParcel(parcel); in testWriteToParcel()
257 assertEquals(rat, fromParcel); in testWriteToParcel()
/frameworks/base/core/tests/coretests/src/android/service/euicc/
DEuiccProfileInfoTest.java64 EuiccProfileInfo fromParcel = EuiccProfileInfo.CREATOR.createFromParcel(parcel); in testWriteToParcel() local
66 assertEquals(p, fromParcel); in testWriteToParcel()
89 EuiccProfileInfo fromParcel = EuiccProfileInfo.CREATOR.createFromParcel(parcel); in testWriteToParcelNullCarrierId() local
91 assertEquals(p, fromParcel); in testWriteToParcelNullCarrierId()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java3047 0, mNetId, PrivateDnsConfig.fromParcel(config))); in notifyPrivateDnsConfigResolved()
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt24925 Landroid/hardware/soundtrigger/SoundTrigger$ConfidenceLevel;->fromParcel(Landroid/os/Parcel;)Landro…
24929 Landroid/hardware/soundtrigger/SoundTrigger$GenericSoundModel;->fromParcel(Landroid/os/Parcel;)Land…
24931 Landroid/hardware/soundtrigger/SoundTrigger$Keyphrase;->fromParcel(Landroid/os/Parcel;)Landroid/har…
24935 Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionExtra;->fromParcel(Landroid/os/Parc…
24937 Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseSoundModel;->fromParcel(Landroid/os/Parcel;)La…
24940 Landroid/hardware/soundtrigger/SoundTrigger$ModuleProperties;->fromParcel(Landroid/os/Parcel;)Landr…
24953 Landroid/hardware/soundtrigger/SoundTrigger$RecognitionConfig;->fromParcel(Landroid/os/Parcel;)Land…
24959 Landroid/hardware/soundtrigger/SoundTrigger$RecognitionEvent;->fromParcel(Landroid/os/Parcel;)Landr…
24969 Landroid/hardware/soundtrigger/SoundTrigger$SoundModelEvent;->fromParcel(Landroid/os/Parcel;)Landro…
Dboot-image-profile.txt7559 HPLandroid/hardware/soundtrigger/SoundTrigger$GenericSoundModel;->fromParcel(Landroid/os/Parcel;)La…
7580 HPLandroid/hardware/soundtrigger/SoundTrigger$RecognitionConfig;->fromParcel(Landroid/os/Parcel;)La…