Home
last modified time | relevance | path

Searched refs:parcelableArray (Results 1 – 12 of 12) sorted by relevance

/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/include/aidl/android/aidl/tests/
H A DParcelableForToString.h43 std::vector<::aidl::android::aidl::tests::OtherParcelableForToString> parcelableArray; variable
55parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) != std:…
58parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) < std::…
61parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) <= std:…
64parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) == std:…
67parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) > std::…
70parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) >= std:…
93 os << ", parcelableArray: " << ::android::internal::ToString(parcelableArray); in toString()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
H A DParcelableForToString.h25parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) != std:…
28parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) < std::…
31parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) <= std:…
34parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) == std:…
37parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) > std::…
40parcelableArray, enumValue, enumArray, nullArray, nullList, parcelableGeneric, unionValue) >= std:…
59 ::std::vector<::android::aidl::tests::OtherParcelableForToString> parcelableArray;
91 os << ", parcelableArray: " << ::android::internal::ToString(parcelableArray); in toString()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
H A DParcelableForToString.java23 public android.aidl.tests.OtherParcelableForToString[] parcelableArray; field in ParcelableForToString
68 _aidl_parcel.writeTypedArray(parcelableArray, 0); in writeToParcel()
136parcelableArray = _aidl_parcel.createTypedArray(android.aidl.tests.OtherParcelableForToString.CREA… in readFromParcel()
185 _aidl_sj.add("parcelableArray: " + (java.util.Arrays.toString(parcelableArray))); in toString()
198 _mask |= describeContents(parcelableArray); in describeContents()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
H A DParcelableForToString.rs19 pub parcelableArray: Vec<crate::mangled::_7_android_4_aidl_5_tests_26_OtherParcelableForToString>, field
47 parcelableArray: Default::default(), in default()
88 subparcel.write(&this.parcelableArray)?; in serialize_option()
185 result.parcelableArray = parcel.read()?; in deserialize_option()
/aosp12/system/tools/aidl/tests/android/aidl/tests/
H A DParcelableForToString.aidl43 OtherParcelableForToString[] parcelableArray;
/aosp12/frameworks/base/core/tests/coretests/src/android/os/
H A DIAidlTest.aidl41 AidlTest.TestParcelable[] parcelableArray(in AidlTest.TestParcelable[] a0, in parcelableArray() method
H A DAidlTest.java192 public TestParcelable[] parcelableArray(TestParcelable[] a0, in parcelableArray() method in AidlTest.AidlObject
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/android/aidl/tests/
H A DParcelableForToString.cpp135 _aidl_ret_status = ::ndk::AParcel_readVector(parcel, &parcelableArray); in readFromParcel()
237 _aidl_ret_status = ::ndk::AParcel_writeVector(parcel, parcelableArray); in writeToParcel()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
H A DParcelableForToString.cpp148 _aidl_ret_status = _aidl_parcel->readParcelableVector(&parcelableArray); in readFromParcel()
272 _aidl_ret_status = _aidl_parcel->writeParcelableVector(parcelableArray); in writeToParcel()
/aosp12/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java602 Parcelable[] parcelableArray = in.readParcelableArray(Surface.class.getClassLoader()); in readFromParcel() local
603 if (parcelableArray != null) { in readFromParcel()
604 for (Parcelable p : parcelableArray) { in readFromParcel()
/aosp12/system/tools/aidl/tests/
H A Daidl_test_client_parcelables.cpp477 p.parcelableArray = {op, op}; in TEST_F()
/aosp12/system/tools/aidl/tests/java/src/android/aidl/tests/
H A DTestServiceClient.java758 p.parcelableArray = new OtherParcelableForToString[]{op, op}; in testToString()