/system/tools/aidl/tests/ |
D | aidl_test_client_delegate.cpp | 66 auto status = delegator->GetOtherTestService(String16("callback1"), &callback); in TEST_F() 112 status = delegator->GetOtherTestService(String16("same_one"), &callback2); in TEST_F() 138 auto status = delegator->GetOtherTestService(String16("callback1"), &callback1); in TEST_F() 142 status = delegator->GetOtherTestService(String16("callback1"), &callback1Copy); in TEST_F()
|
D | aidl_test_client_ndk_primitives_test.cpp | 45 ASSERT_TRUE(service->GetOtherTestService(names[i], &got).isOk()); in TEST_F()
|
D | aidl_test_service.cpp | 441 Status GetOtherTestService(const String16& name, in GetOtherTestService() function in __anonbcceb43d0111::NativeService 469 if (auto st = GetOtherTestService(names[i], &services[i]); !st.isOk()) { in GetInterfaceArray() 499 if (auto st = GetOtherTestService(*name, &ret); !st.isOk()) { in GetNullableInterfaceArray() 692 return GetOtherTestService(String16("ABT: always be testing"), ret); in GetCallback()
|
D | aidl_test_client_parcelables.cpp | 258 service->GetOtherTestService(String16("callback1"), &callback1); in TEST_F() 259 service->GetOtherTestService(String16("callback2"), &callback2); in TEST_F()
|
D | aidl_test_client_primitives.cpp | 220 auto status = service->GetOtherTestService(names[i], &got); in TEST_F()
|
/system/tools/aidl/tests/rust/ |
D | test_service_async.rs | 204 async fn GetOtherTestService( in GetOtherTestService() method 249 res.push(self.GetOtherTestService(name).await?); in GetInterfaceArray() 280 services.push(Some(self.GetOtherTestService(name).await?)); in GetNullableInterfaceArray() 425 self.GetOtherTestService("ABT: always be testing").await.map(Some) in GetCallback()
|
D | test_service.rs | 178 fn GetOtherTestService( in GetOtherTestService() method 217 names.iter().map(|name| self.GetOtherTestService(name)).collect() in GetInterfaceArray() 246 services.push(Some(self.GetOtherTestService(name)?)); in GetNullableInterfaceArray() 382 self.GetOtherTestService("ABT: always be testing").map(Some) in GetCallback()
|
D | test_client.rs | 290 let got = service.GetOtherTestService(NAME).expect("error calling GetOtherTestService"); in test_binder_exchange()
|
/system/tools/aidl/tests/android/aidl/tests/ |
D | ITestService.aidl | 140 @PropagateAllowBlocking INamedCallback GetOtherTestService(String name); in GetOtherTestService() method
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/ |
D | BnTestService.h | 106 …::ndk::ScopedAStatus GetOtherTestService(const std::string& in_name, std::shared_ptr<::aidl::andro… in GetOtherTestService() function 107 return _impl->GetOtherTestService(in_name, _aidl_return); in GetOtherTestService()
|
D | BpTestService.h | 41 …::ndk::ScopedAStatus GetOtherTestService(const std::string& in_name, std::shared_ptr<::aidl::andro…
|
D | ITestService.h | 537 …virtual ::ndk::ScopedAStatus GetOtherTestService(const std::string& in_name, std::shared_ptr<::aid… 610 …::ndk::ScopedAStatus GetOtherTestService(const std::string& in_name, std::shared_ptr<::aidl::andro…
|
/system/tools/aidl/tests/java/src/android/aidl/service/ |
D | TestServiceServer.java | 309 public INamedCallback GetOtherTestService(String name) throws RemoteException { in GetOtherTestService() method in TestServiceServer 354 services[i] = GetOtherTestService(names[i]); in GetNullableInterfaceArray()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/ |
D | BnTestService.h | 171 …::android::binder::Status GetOtherTestService(const ::android::String16& name, ::android::sp<::and… in GetOtherTestService() function 172 auto _status = _aidl_delegate->GetOtherTestService(name, _aidl_return); in GetOtherTestService()
|
D | BpTestService.h | 40 …::android::binder::Status GetOtherTestService(const ::android::String16& name, ::android::sp<::and…
|
D | ITestService.h | 448 …virtual ::android::binder::Status GetOtherTestService(const ::android::String16& name, ::android::… 573 …::android::binder::Status GetOtherTestService(const ::android::String16& /*name*/, ::android::sp<:… in GetOtherTestService() function
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 43 …fn r#GetOtherTestService(&self, _arg_name: &str) -> binder::Result<binder::Strong<dyn crate::mangl… 121 …fn r#GetOtherTestService<'a>(&'a self, _arg_name: &'a str) -> binder::BoxFuture<'a, binder::Result… 194 …async fn r#GetOtherTestService(&self, _arg_name: &str) -> binder::Result<binder::Strong<dyn crate:… 333 …fn r#GetOtherTestService(&self, _arg_name: &str) -> binder::Result<binder::Strong<dyn crate::mangl… in new_async_binder() 334 self._rt.block_on(self._inner.r#GetOtherTestService(_arg_name)) in new_async_binder() 543 …fn r#GetOtherTestService(&self, _arg_name: &str) -> binder::Result<binder::Strong<dyn crate::mangl… 699 …pub const r#GetOtherTestService: binder::binder_impl::TransactionCode = binder::binder_impl::FIRST… 1314 return _aidl_default_impl.r#GetOtherTestService(_arg_name); in read_response_GetOtherTestService() 2214 …fn r#GetOtherTestService(&self, _arg_name: &str) -> binder::Result<binder::Strong<dyn crate::mangl… 2216 …let _aidl_reply = self.binder.submit_transact(transactions::r#GetOtherTestService, _aidl_data, bin… [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/ |
D | ITestService.java | 127 …@Override public android.aidl.tests.INamedCallback GetOtherTestService(java.lang.String name) thro… in GetOtherTestService() method in ITestService.Default 430 …@Override public android.aidl.tests.INamedCallback GetOtherTestService(java.lang.String name) thro… in GetOtherTestService() method in ITestService.Delegator 432 return mImpl.GetOtherTestService(name); in GetOtherTestService() 1278 android.aidl.tests.INamedCallback _result = this.GetOtherTestService(_arg0); in onTransact() 2398 …@Override public android.aidl.tests.INamedCallback GetOtherTestService(java.lang.String name) thro… in GetOtherTestService() method in ITestService.Stub.Proxy 2411 return getDefaultImpl().GetOtherTestService(name); in GetOtherTestService() 3682 …public android.aidl.tests.INamedCallback GetOtherTestService(java.lang.String name) throws android… in GetOtherTestService() method
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestServiceClient.java | 311 INamedCallback got = service.GetOtherTestService("Smythe"); in testBinderExchange()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/android/aidl/tests/ |
D | ITestService.cpp | 545 ::ndk::ScopedAStatus _aidl_status = _aidl_impl->GetOtherTestService(in_name, &_aidl_return); in _aidl_android_aidl_tests_ITestService_onTransact() 2423 ::ndk::ScopedAStatus BpTestService::GetOtherTestService(const std::string& in_name, std::shared_ptr… in GetOtherTestService() function in aidl::android::aidl::tests::BpTestService 2447 _aidl_status = ITestService::getDefaultImpl()->GetOtherTestService(in_name, _aidl_return); in GetOtherTestService() 4388 ::ndk::ScopedAStatus ITestServiceDefault::GetOtherTestService(const std::string& /*in_name*/, std::… in GetOtherTestService() 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 | 1075 ::android::binder::Status BpTestService::GetOtherTestService(const ::android::String16& name, ::and… in GetOtherTestService() function in android::aidl::tests::BpTestService 1093 return ITestService::getDefaultImpl()->GetOtherTestService(name, _aidl_return); in GetOtherTestService() 3662 ::android::binder::Status _aidl_status(GetOtherTestService(in_name, &_aidl_return)); in onTransact()
|