Home
last modified time | relevance | path

Searched refs:IRepeatFixedSizeArray (Results 1 – 13 of 13) sorted by relevance

/system/tools/aidl/tests/
Daidl_test_client_ndk_parcelables.cpp36 using IRepeatFixedSizeArray = typedef
37 aidl::android::aidl::fixedsizearray::FixedSizeArrayExample::IRepeatFixedSizeArray;
192 auto service = getService<IRepeatFixedSizeArray>(); in TEST_F()
194 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatBytes, (std::array<uint8_t, 3>{1, 2, 3})); in TEST_F()
196 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatInts, (std::array<int32_t, 3>{1, 2, 3})); in TEST_F()
201 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatBinders, in TEST_F()
208 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatParcelables, in TEST_F()
211 CheckRepeat(service, &IRepeatFixedSizeArray::Repeat2dBytes, Make2dArray<uint8_t>({1, 2, 3})); in TEST_F()
213 CheckRepeat(service, &IRepeatFixedSizeArray::Repeat2dInts, Make2dArray<int32_t>({1, 2, 3})); in TEST_F()
216 CheckRepeat(service, &IRepeatFixedSizeArray::Repeat2dBinders, in TEST_F()
[all …]
Daidl_test_client_parcelables.cpp52 using IRepeatFixedSizeArray = typedef
53 android::aidl::fixedsizearray::FixedSizeArrayExample::IRepeatFixedSizeArray;
680 sp<IRepeatFixedSizeArray> service; in TEST_F()
681 ASSERT_EQ(OK, getService(IRepeatFixedSizeArray::descriptor, &service)); in TEST_F()
683 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatBytes, (std::array<uint8_t, 3>{1, 2, 3})); in TEST_F()
685 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatInts, (std::array<int32_t, 3>{1, 2, 3})); in TEST_F()
690 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatBinders, in TEST_F()
697 CheckRepeat(service, &IRepeatFixedSizeArray::RepeatParcelables, in TEST_F()
700 CheckRepeat(service, &IRepeatFixedSizeArray::Repeat2dBytes, Make2dArray<uint8_t>({1, 2, 3})); in TEST_F()
702 CheckRepeat(service, &IRepeatFixedSizeArray::Repeat2dInts, Make2dArray<int32_t>({1, 2, 3})); in TEST_F()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-ndk-source/gen/android/aidl/fixedsizearray/
DFixedSizeArrayExample.cpp780 …ay_clazz = ::ndk::ICInterface::defineClass(FixedSizeArrayExample::IRepeatFixedSizeArray::descripto…
807 if (_aidl_ret_status == STATUS_UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefaultImpl()) { in RepeatBytes()
808 …_aidl_status = IRepeatFixedSizeArray::getDefaultImpl()->RepeatBytes(in_input, out_repeated, _aidl_… in RepeatBytes()
850 if (_aidl_ret_status == STATUS_UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefaultImpl()) { in RepeatInts()
851 …_aidl_status = IRepeatFixedSizeArray::getDefaultImpl()->RepeatInts(in_input, out_repeated, _aidl_r… in RepeatInts()
893 if (_aidl_ret_status == STATUS_UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefaultImpl()) { in RepeatBinders()
894 …_aidl_status = IRepeatFixedSizeArray::getDefaultImpl()->RepeatBinders(in_input, out_repeated, _aid… in RepeatBinders()
936 if (_aidl_ret_status == STATUS_UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefaultImpl()) { in RepeatParcelables()
937 …_aidl_status = IRepeatFixedSizeArray::getDefaultImpl()->RepeatParcelables(in_input, out_repeated, … in RepeatParcelables()
979 if (_aidl_ret_status == STATUS_UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefaultImpl()) { in Repeat2dBytes()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-cpp-source/gen/android/aidl/fixedsizearray/
DFixedSizeArrayExample.cpp712 : BpInterface<IRepeatFixedSizeArray>(_aidl_impl){ in BpRepeatFixedSizeArray()
730 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefau… in RepeatBytes()
731 return IRepeatFixedSizeArray::getDefaultImpl()->RepeatBytes(input, repeated, _aidl_return); in RepeatBytes()
771 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefau… in RepeatInts()
772 return IRepeatFixedSizeArray::getDefaultImpl()->RepeatInts(input, repeated, _aidl_return); in RepeatInts()
812 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefau… in RepeatBinders()
813 return IRepeatFixedSizeArray::getDefaultImpl()->RepeatBinders(input, repeated, _aidl_return); in RepeatBinders()
853 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefau… in RepeatParcelables()
854 … return IRepeatFixedSizeArray::getDefaultImpl()->RepeatParcelables(input, repeated, _aidl_return); in RepeatParcelables()
894 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IRepeatFixedSizeArray::getDefau… in Repeat2dBytes()
[all …]
/system/tools/aidl/tests/rust/
Dtest_service.rs20 IRepeatFixedSizeArray, IntParcelable::IntParcelable,
529 impl IRepeatFixedSizeArray::IRepeatFixedSizeArray for FixedSizeArrayService {
609 …<IRepeatFixedSizeArray::BpRepeatFixedSizeArray as IRepeatFixedSizeArray::IRepeatFixedSizeArray>::g… in main()
610 let fixed_size_array_service = IRepeatFixedSizeArray::BnRepeatFixedSizeArray::new_binder( in main()
Dtest_client.rs22 IRepeatFixedSizeArray::{BpRepeatFixedSizeArray, IRepeatFixedSizeArray},
1179 let service: binder::Strong<dyn IRepeatFixedSizeArray> = in test_fixed_size_array_over_binder()
1180 binder::get_interface(<BpRepeatFixedSizeArray as IRepeatFixedSizeArray>::get_descriptor()) in test_fixed_size_array_over_binder()
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-rust-source/gen/android/aidl/fixedsizearray/
DFixedSizeArrayExample.rs359 pub mod IRepeatFixedSizeArray { module
365IRepeatFixedSizeArray["android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray"] {
372 pub trait IRepeatFixedSizeArray: binder::Interface + Send { trait
414 … R>(inner: T, rt: R, features: binder::BinderFeatures) -> binder::Strong<dyn IRepeatFixedSizeArray> in new_async_binder()
427 impl<T, R> IRepeatFixedSizeArray for Wrapper<T, R> in new_async_binder()
510 if let Some(_aidl_default_impl) = <Self as IRepeatFixedSizeArray>::getDefaultImpl() {
528 if let Some(_aidl_default_impl) = <Self as IRepeatFixedSizeArray>::getDefaultImpl() {
546 if let Some(_aidl_default_impl) = <Self as IRepeatFixedSizeArray>::getDefaultImpl() {
564 if let Some(_aidl_default_impl) = <Self as IRepeatFixedSizeArray>::getDefaultImpl() {
582 if let Some(_aidl_default_impl) = <Self as IRepeatFixedSizeArray>::getDefaultImpl() {
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-ndk-source/gen/include/aidl/android/aidl/fixedsizearray/
DFixedSizeArrayExample.h66 class IRepeatFixedSizeArray : public ::ndk::ICInterface {
69 IRepeatFixedSizeArray();
70 virtual ~IRepeatFixedSizeArray();
81 static std::shared_ptr<IRepeatFixedSizeArray> fromBinder(const ::ndk::SpAIBinder& binder);
82 …der_status_t writeToParcel(AParcel* parcel, const std::shared_ptr<IRepeatFixedSizeArray>& instance…
83 …er_status_t readFromParcel(const AParcel* parcel, std::shared_ptr<IRepeatFixedSizeArray>* instance…
84 static bool setDefaultImpl(const std::shared_ptr<IRepeatFixedSizeArray>& impl);
85 static const std::shared_ptr<IRepeatFixedSizeArray>& getDefaultImpl();
95 static std::shared_ptr<IRepeatFixedSizeArray> default_impl;
97 class IRepeatFixedSizeArrayDefault : public IRepeatFixedSizeArray {
[all …]
/system/tools/aidl/tests/android/aidl/fixedsizearray/
DFixedSizeArrayExample.aidl93 interface IRepeatFixedSizeArray { interface
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-java-source/gen/android/aidl/fixedsizearray/
DFixedSizeArrayExample.java355 public interface IRepeatFixedSizeArray extends android.os.IInterface interface in FixedSizeArrayExample
358 …ic class Default implements android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray
398 …ndroid.os.Binder implements android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray
409 …public static android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray asInterface(… in asInterface()
415 …null)&&(iin instanceof android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray))) { in asInterface()
416 return ((android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray)iin); in asInterface()
418 …return new android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray.Stub.Proxy(obj); in asInterface()
551 …atic class Proxy implements android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray
/system/tools/aidl/tests/golden_output/aidl-test-fixedsizearray-cpp-source/gen/include/android/aidl/fixedsizearray/
DFixedSizeArrayExample.h60 class IRepeatFixedSizeArray : public ::android::IInterface {
73 class IRepeatFixedSizeArrayDefault : public IRepeatFixedSizeArray {
103 class BpRepeatFixedSizeArray : public ::android::BpInterface<IRepeatFixedSizeArray> {
116 class BnRepeatFixedSizeArray : public ::android::BnInterface<IRepeatFixedSizeArray> {
132 …explicit IRepeatFixedSizeArrayDelegator(::android::sp<IRepeatFixedSizeArray> &impl) : _aidl_delega… in IRepeatFixedSizeArrayDelegator()
159 ::android::sp<IRepeatFixedSizeArray> _aidl_delegate;
/system/tools/aidl/tests/java/src/android/aidl/service/
DTestServiceServer.java19 import android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray;
72 ServiceManager.addService(IRepeatFixedSizeArray.DESCRIPTOR, fixedSize); in main()
683 public static class FixedSizeArrayService extends IRepeatFixedSizeArray.Stub {
/system/tools/aidl/tests/java/src/android/aidl/tests/
DTestServiceClient.java30 import android.aidl.fixedsizearray.FixedSizeArrayExample.IRepeatFixedSizeArray;
994 IBinder binder = ServiceManager.waitForService(IRepeatFixedSizeArray.DESCRIPTOR); in testFixedSizeArrayOverBinder()
996 IRepeatFixedSizeArray service = IRepeatFixedSizeArray.Stub.asInterface(binder); in testFixedSizeArrayOverBinder()