/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | DelegatorTests.java | 39 public byte RepeatByte(byte token) throws RemoteException { in RepeatByte() method in DelegatorTests.Custom 50 assertThat(delegator.RepeatByte(kExpectedByte), is(kExpectedByte)); in testDelegator() 59 assertThat(custom.RepeatByte(kExpectedByte), is(kFakeByte)); in testCustomDelegator() 68 assertThat(ITestService.Delegator.asInterface(delegator.asBinder()).RepeatByte(kExpectedByte), in testAsBinderAsInterface()
|
D | TestServiceClient.java | 112 assertThat(service.RepeatByte(query), is(query)); in testByteRepeat()
|
/system/tools/aidl/tests/ |
D | aidl_test_client_ndk_delegate.cpp | 38 ndk::ScopedAStatus RepeatByte(int8_t /* token */, int8_t* _aidl_return) override { in RepeatByte() function 59 auto status = delegator->RepeatByte(12, &returned_value); in TEST_F() 67 auto status = delegator->RepeatByte(12, &returned_value); in TEST_F() 77 auto status = fromAsBinder->RepeatByte(12, &returned_value); in TEST_F()
|
D | aidl_test_client_delegate.cpp | 38 Status RepeatByte(int8_t /* token */, int8_t* _aidl_return) override { in RepeatByte() function 48 auto status = delegator->RepeatByte(12, &returned_value); in TEST_F() 57 auto status = delegator->RepeatByte(12, &returned_value); in TEST_F()
|
D | aidl_test_client_primitives.cpp | 75 DoTest(&ITestService::RepeatByte, int8_t{-128}); in TEST_F() 101 DoTest(&ITestService::RepeatByte, sent); in TEST_F()
|
D | aidl_test_service.cpp | 321 Status RepeatByte(int8_t token, int8_t* _aidl_return) override { in RepeatByte() function in __anonbcceb43d0111::NativeService
|
/system/core/trusty/test/binder/aidl/com/android/trusty/binder/test/ |
D | ITestService.aidl | 47 byte RepeatByte(byte token); in RepeatByte() method
|
/system/tools/aidl/tests/android/aidl/tests/ |
D | ITestService.aidl | 115 byte RepeatByte(byte token); in RepeatByte() method
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/ |
D | BnTestService.h | 43 ::ndk::ScopedAStatus RepeatByte(int8_t in_token, int8_t* _aidl_return) override { in RepeatByte() function 44 return _impl->RepeatByte(in_token, _aidl_return); in RepeatByte()
|
D | BpTestService.h | 20 ::ndk::ScopedAStatus RepeatByte(int8_t in_token, int8_t* _aidl_return) override;
|
D | ITestService.h | 516 virtual ::ndk::ScopedAStatus RepeatByte(int8_t in_token, int8_t* _aidl_return) = 0; 589 ::ndk::ScopedAStatus RepeatByte(int8_t in_token, int8_t* _aidl_return) override;
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/ |
D | BnTestService.h | 108 ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) override { in RepeatByte() function 109 return _aidl_delegate->RepeatByte(token, _aidl_return); in RepeatByte()
|
D | BpTestService.h | 19 ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) override;
|
D | ITestService.h | 427 virtual ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) = 0; 510 ::android::binder::Status RepeatByte(int8_t /*token*/, int8_t* /*_aidl_return*/) override { in RepeatByte() function
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 22 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8>; 100 fn r#RepeatByte<'a>(&'a self, _arg_token: i8) -> binder::BoxFuture<'a, binder::Result<i8>>; 173 async fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8>; 270 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8> { in new_async_binder() 271 self._rt.block_on(self._inner.r#RepeatByte(_arg_token)) in new_async_binder() 480 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8> { 678 …pub const r#RepeatByte: binder::binder_impl::TransactionCode = binder::binder_impl::FIRST_CALL_TRA… 914 return _aidl_default_impl.r#RepeatByte(_arg_token); in read_response_RepeatByte() 2109 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8> { 2111 …let _aidl_reply = self.binder.submit_transact(transactions::r#RepeatByte, _aidl_data, binder::bind… [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/ |
D | ITestService.java | 41 @Override public byte RepeatByte(byte token) throws android.os.RemoteException in RepeatByte() method in ITestService.Default 344 @Override public byte RepeatByte(byte token) throws android.os.RemoteException in RepeatByte() method in ITestService.Delegator 346 return mImpl.RepeatByte(token); in RepeatByte() 980 byte _result = this.RepeatByte(_arg0); in onTransact() 1870 @Override public byte RepeatByte(byte token) throws android.os.RemoteException in RepeatByte() method in ITestService.Stub.Proxy 1882 return getDefaultImpl().RepeatByte(token); in RepeatByte() 3659 public byte RepeatByte(byte token) throws android.os.RemoteException; in RepeatByte() method
|
/system/tools/aidl/tests/rust/ |
D | test_client.rs | 149 test_primitive! {test_primitive_byte, RepeatByte, -128i8} 155 test_primitive! {test_primitive_byte_constant, RepeatByte, ITestService::BYTE_TEST_CONSTANT}
|
D | test_service_async.rs | 167 impl_repeat! {RepeatByte, i8}
|
D | test_service.rs | 141 impl_repeat! {RepeatByte, i8}
|
/system/tools/aidl/tests/java/src/android/aidl/service/ |
D | TestServiceServer.java | 158 public byte RepeatByte(byte token) throws RemoteException { in RepeatByte() method in TestServiceServer
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/android/aidl/tests/ |
D | ITestService.cpp | 90 ::ndk::ScopedAStatus _aidl_status = _aidl_impl->RepeatByte(in_token, &_aidl_return); in _aidl_android_aidl_tests_ITestService_onTransact() 1496 ::ndk::ScopedAStatus BpTestService::RepeatByte(int8_t in_token, int8_t* _aidl_return) { in RepeatByte() function in aidl::android::aidl::tests::BpTestService 1520 _aidl_status = ITestService::getDefaultImpl()->RepeatByte(in_token, _aidl_return); in RepeatByte() 4283 ::ndk::ScopedAStatus ITestServiceDefault::RepeatByte(int8_t /*in_token*/, int8_t* /*_aidl_return*/)… in RepeatByte() function in aidl::android::aidl::tests::ITestServiceDefault
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/ |
D | ITestService.cpp | 168 ::android::binder::Status BpTestService::RepeatByte(int8_t token, int8_t* _aidl_return) { in RepeatByte() function in android::aidl::tests::BpTestService 186 return ITestService::getDefaultImpl()->RepeatByte(token, _aidl_return); in RepeatByte() 2912 ::android::binder::Status _aidl_status(RepeatByte(in_token, &_aidl_return)); in onTransact()
|