/frameworks/base/keystore/tests/src/android/security/ |
D | ParcelableKeyGenParameterSpecTest.java | 133 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/ |
D | WallpaperInfoTest.java | 64 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/ |
D | TimestampedScoredNetworkTest.java | 63 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/ |
D | SoundTrigger.java | 148 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/ |
D | KeyDerivationParamsTest.java | 70 KeyDerivationParams fromParcel = in writeToThenReadFromParcel() local 73 return fromParcel; in writeToThenReadFromParcel()
|
D | RecoveryCertPathTest.java | 71 RecoveryCertPath fromParcel = RecoveryCertPath.CREATOR.createFromParcel(parcel); in writeToThenReadFromParcel() local 73 return fromParcel; in writeToThenReadFromParcel()
|
D | KeyChainProtectionParamsTest.java | 97 KeyChainProtectionParams fromParcel = in writeToThenReadFromParcel() local 100 return fromParcel; in writeToThenReadFromParcel()
|
D | KeyChainSnapshotTest.java | 211 KeyChainSnapshot fromParcel = KeyChainSnapshot.CREATOR.createFromParcel(parcel); in writeToThenReadFromParcel() local 213 return fromParcel; in writeToThenReadFromParcel()
|
/frameworks/base/wifi/tests/src/android/net/wifi/p2p/ |
D | WifiP2pInfoTest.java | 78 WifiP2pInfo fromParcel = WifiP2pInfo.CREATOR.createFromParcel(parcelR); in testParcelOperation() local 81 assertEquals(info.toString(), fromParcel.toString()); in testParcelOperation()
|
D | WifiP2pDeviceListTest.java | 71 WifiP2pDeviceList fromParcel = WifiP2pDeviceList.CREATOR.createFromParcel(parcelR); in testListOperations() local 73 assertEquals(list.toString(), fromParcel.toString()); in testListOperations()
|
D | WifiP2pWfdInfoTest.java | 105 WifiP2pWfdInfo fromParcel = WifiP2pWfdInfo.CREATOR.createFromParcel(parcelR); in testParcelOperation() local 108 assertEquals(mSourceInfo.toString(), fromParcel.toString()); in testParcelOperation()
|
D | WifiP2pGroupTest.java | 87 WifiP2pGroup fromParcel = WifiP2pGroup.CREATOR.createFromParcel(parcelR); in testSetterGetter() local 89 assertEquals(group.toString(), fromParcel.toString()); in testSetterGetter()
|
D | WifiP2pGroupListTest.java | 107 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/ |
D | PhysicalChannelConfigTest.java | 75 PhysicalChannelConfig fromParcel = PhysicalChannelConfig.CREATOR.createFromParcel(parcel); in testParcel() local 77 assertThat(fromParcel).isEqualTo(config); in testParcel()
|
D | BarringInfoTest.java | 83 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/ |
D | EuiccRulesAuthTableTest.java | 228 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/ |
D | EuiccProfileInfoTest.java | 64 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/ |
D | ConnectivityService.java | 3047 0, mNetId, PrivateDnsConfig.fromParcel(config))); in notifyPrivateDnsConfigResolved()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 24925 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…
|
D | boot-image-profile.txt | 7559 HPLandroid/hardware/soundtrigger/SoundTrigger$GenericSoundModel;->fromParcel(Landroid/os/Parcel;)La… 7580 HPLandroid/hardware/soundtrigger/SoundTrigger$RecognitionConfig;->fromParcel(Landroid/os/Parcel;)La…
|