Home
last modified time | relevance | path

Searched refs:parcel2 (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/binder/rust/src/
Dparcel.rs920 let mut parcel2 = Parcel::new(); in test_append_from() localVariable
921 assert_eq!(Ok(()), parcel2.append_all_from(&parcel1)); in test_append_from()
922 assert_eq!(4, parcel2.get_data_size()); in test_append_from()
923 assert_eq!(Ok(()), parcel2.append_all_from(&parcel1)); in test_append_from()
924 assert_eq!(8, parcel2.get_data_size()); in test_append_from()
928 parcel2.set_data_position(0).unwrap(); in test_append_from()
930 assert_eq!(Ok(42), parcel2.read::<i32>()); in test_append_from()
931 assert_eq!(Ok(42), parcel2.read::<i32>()); in test_append_from()
933 let mut parcel2 = Parcel::new(); in test_append_from() localVariable
934 assert_eq!(Ok(()), parcel2.append_from(&parcel1, 0, 2)); in test_append_from()
[all …]
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DPreferencesHelperTest.java3031 Parcel parcel2 = Parcel.obtain(); in testGetNotificationChannelGroup() local
3032 g2.writeToParcel(parcel2, 0); in testGetNotificationChannelGroup()
3033 parcel2.setDataPosition(0); in testGetNotificationChannelGroup()