Searched refs:outParcel (Results 1 – 3 of 3) sorted by relevance
/cts/tests/app/src/android/app/cts/ |
D | AdjustmentTest.java | 73 final Parcel outParcel = Parcel.obtain(); in testParcelling() local 74 mAdjustment.writeToParcel(outParcel, 0); in testParcelling() 75 outParcel.setDataPosition(0); in testParcelling() 76 final Adjustment unparceled = Adjustment.CREATOR.createFromParcel(outParcel); in testParcelling()
|
/cts/tests/tests/notificationlegacy/notificationlegacy29/src/android/app/notification/legacy29/cts/ |
D | AdjustmentTest.java | 79 final Parcel outParcel = Parcel.obtain(); in testParcelling() local 80 mAdjustment.writeToParcel(outParcel, 0); in testParcelling() 81 outParcel.setDataPosition(0); in testParcelling() 82 final Adjustment unparceled = Adjustment.CREATOR.createFromParcel(outParcel); in testParcelling()
|
/cts/tests/tests/binder_ndk/libbinder_ndk_test/ |
D | test_ibinder.cpp | 424 AParcel* outParcel = nullptr; in TEST_F() local 430 AIBinder_transact(nullptr, kCode, &inParcel, &outParcel, 0 /*flags*/)); in TEST_F() 432 EXPECT_EQ(nullptr, outParcel); // not modified in TEST_F() 436 AIBinder_transact(binder, kCode, nullptr, &outParcel, 0 /*flags*/)); in TEST_F() 437 EXPECT_EQ(nullptr, outParcel); // not modified in TEST_F() 445 EXPECT_EQ(nullptr, outParcel); // not modified in TEST_F()
|