Home
last modified time | relevance | path

Searched refs:RepeatByte (Results 1 – 22 of 22) sorted by relevance

/system/tools/aidl/tests/java/src/android/aidl/tests/
DDelegatorTests.java39 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()
DTestServiceClient.java112 assertThat(service.RepeatByte(query), is(query)); in testByteRepeat()
/system/tools/aidl/tests/
Daidl_test_client_ndk_delegate.cpp38 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()
Daidl_test_client_delegate.cpp38 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()
Daidl_test_client_primitives.cpp75 DoTest(&ITestService::RepeatByte, int8_t{-128}); in TEST_F()
101 DoTest(&ITestService::RepeatByte, sent); in TEST_F()
Daidl_test_service.cpp321 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/
DITestService.aidl47 byte RepeatByte(byte token); in RepeatByte() method
/system/tools/aidl/tests/android/aidl/tests/
DITestService.aidl115 byte RepeatByte(byte token); in RepeatByte() method
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/
DBnTestService.h43 ::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()
DBpTestService.h20 ::ndk::ScopedAStatus RepeatByte(int8_t in_token, int8_t* _aidl_return) override;
DITestService.h516 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/
DBnTestService.h108 ::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()
DBpTestService.h19 ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) override;
DITestService.h427 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/
DITestService.rs22 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/
DITestService.java41 @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/
Dtest_client.rs149 test_primitive! {test_primitive_byte, RepeatByte, -128i8}
155 test_primitive! {test_primitive_byte_constant, RepeatByte, ITestService::BYTE_TEST_CONSTANT}
Dtest_service_async.rs167 impl_repeat! {RepeatByte, i8}
Dtest_service.rs141 impl_repeat! {RepeatByte, i8}
/system/tools/aidl/tests/java/src/android/aidl/service/
DTestServiceServer.java158 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/
DITestService.cpp90 ::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/
DITestService.cpp168 ::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()