/system/tools/aidl/tests/rust/ |
D | test_client.rs | 126 test_primitive! {test_primitive_int, RepeatInt, 1i32 << 30} 131 test_primitive! {test_primitive_constant1, RepeatInt, ITestService::TEST_CONSTANT} 132 test_primitive! {test_primitive_constant2, RepeatInt, ITestService::TEST_CONSTANT2} 133 test_primitive! {test_primitive_constant3, RepeatInt, ITestService::TEST_CONSTANT3} 134 test_primitive! {test_primitive_constant4, RepeatInt, ITestService::TEST_CONSTANT4} 135 test_primitive! {test_primitive_constant5, RepeatInt, ITestService::TEST_CONSTANT5} 136 test_primitive! {test_primitive_constant6, RepeatInt, ITestService::TEST_CONSTANT6} 137 test_primitive! {test_primitive_constant7, RepeatInt, ITestService::TEST_CONSTANT7} 138 test_primitive! {test_primitive_constant8, RepeatInt, ITestService::TEST_CONSTANT8} 139 test_primitive! {test_primitive_constant9, RepeatInt, ITestService::TEST_CONSTANT9} [all …]
|
D | test_service.rs | 138 impl_repeat_reverse! {RepeatInt, ReverseInt, i32}
|
/system/tools/aidl/tests/ |
D | aidl_test_client_primitives.cpp | 83 DoTest(&ITestService::RepeatInt, int32_t{1 << 30}); in TEST_F() 112 DoTest(&ITestService::RepeatInt, sent); in TEST_F()
|
D | aidl_test_service.cpp | 318 Status RepeatInt(int32_t token, int32_t* _aidl_return) override { in RepeatInt() function in __anonee08dd980111::NativeService
|
/system/tools/aidl/tests/android/aidl/tests/ |
D | ITestService.aidl | 78 int RepeatInt(int token); in RepeatInt() method
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 21 fn RepeatInt(&self, _arg_token: i32) -> binder::public_api::Result<i32>; in RepeatInt() method 92 fn RepeatInt(&self, _arg_token: i32) -> binder::public_api::Result<i32> { in RepeatInt() method 235 pub const RepeatInt: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 6; constant 458 fn RepeatInt(&self, _arg_token: i32) -> binder::public_api::Result<i32> { in RepeatInt() method 459 …let _aidl_reply = self.binder.transact(transactions::RepeatInt, binder::FLAG_CLEAR_BUF | binder::F… in RepeatInt() 466 return _aidl_default_impl.RepeatInt(_arg_token); in RepeatInt() 1255 …fn RepeatInt(&self, _arg_token: i32) -> binder::public_api::Result<i32> { self.0.RepeatInt(_arg_to… in RepeatInt() method 1365 transactions::RepeatInt => { in on_transact() 1367 let _aidl_return = _aidl_service.RepeatInt(_arg_token); in on_transact()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/include/aidl/android/aidl/tests/ |
D | BpTestService.h | 22 ::ndk::ScopedAStatus RepeatInt(int32_t in_token, int32_t* _aidl_return) override;
|
D | ITestService.h | 171 virtual ::ndk::ScopedAStatus RepeatInt(int32_t in_token, int32_t* _aidl_return) = 0; 227 ::ndk::ScopedAStatus RepeatInt(int32_t in_token, int32_t* _aidl_return) override;
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/ |
D | BpTestService.h | 24 ::android::binder::Status RepeatInt(int32_t token, int32_t* _aidl_return) override;
|
D | ITestService.h | 117 virtual ::android::binder::Status RepeatInt(int32_t token, int32_t* _aidl_return) = 0; 187 ::android::binder::Status RepeatInt(int32_t, int32_t*) override { in RepeatInt() function
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestServiceClient.java | 108 assertThat(service.RepeatInt(query), is(query)); in testIntRepeat() 122 assertThat(service.RepeatInt(query[i]), is(query[i])); in testConstRepeat()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/ |
D | ITestService.java | 48 @Override public int RepeatInt(int token) throws android.os.RemoteException in RepeatInt() method in ITestService.Default 336 int _result = this.RepeatInt(_arg0); in onTransact() 1103 @Override public int RepeatInt(int token) throws android.os.RemoteException in RepeatInt() method in ITestService.Stub.Proxy 1114 return getDefaultImpl().RepeatInt(token); in RepeatInt() 2439 public int RepeatInt(int token) throws android.os.RemoteException; in RepeatInt() method
|
/system/tools/aidl/tests/java/src/android/aidl/service/ |
D | TestServiceServer.java | 123 public int RepeatInt(int token) throws RemoteException { in RepeatInt() method in TestServiceServer
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/android/aidl/tests/ |
D | ITestService.cpp | 122 ::ndk::ScopedAStatus _aidl_status = _aidl_impl->RepeatInt(in_token, &_aidl_return); in _aidl_onTransact() 1246 ::ndk::ScopedAStatus BpTestService::RepeatInt(int32_t in_token, int32_t* _aidl_return) { in RepeatInt() function in aidl::android::aidl::tests::BpTestService 1270 _aidl_status = ITestService::getDefaultImpl()->RepeatInt(in_token, _aidl_return); in RepeatInt() 3246 ::ndk::ScopedAStatus ITestServiceDefault::RepeatInt(int32_t /*in_token*/, int32_t* /*_aidl_return*/… in RepeatInt() 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 | 252 ::android::binder::Status BpTestService::RepeatInt(int32_t token, int32_t* _aidl_return) { in RepeatInt() function in android::aidl::tests::BpTestService 269 return ITestService::getDefaultImpl()->RepeatInt(token, _aidl_return); in RepeatInt() 2225 ::android::binder::Status _aidl_status(RepeatInt(in_token, &_aidl_return)); in onTransact()
|