/system/tools/aidl/tests/ |
D | aidl_test_client_utf8_strings.cpp | 77 auto status = service->ReverseUtf8CppString(input, &repeated, &reversed); in TEST_F()
|
D | aidl_test_client_ndk_strings_test.cpp | 85 auto status = service->ReverseUtf8CppString(input, &repeated, &reversed); in TEST_F()
|
D | aidl_test_service.cpp | 665 Status ReverseUtf8CppString(const vector<string>& input, in ReverseUtf8CppString() function in __anonbcceb43d0111::NativeService
|
/system/tools/aidl/tests/android/aidl/tests/ |
D | ITestService.aidl | 193 @utf8InCpp String[] ReverseUtf8CppString( in ReverseUtf8CppString() method
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/ |
D | BnTestService.h | 190 …::ndk::ScopedAStatus ReverseUtf8CppString(const std::vector<std::string>& in_input, std::vector<st… in ReverseUtf8CppString() function 191 return _impl->ReverseUtf8CppString(in_input, out_repeated, _aidl_return); in ReverseUtf8CppString()
|
D | BpTestService.h | 69 …::ndk::ScopedAStatus ReverseUtf8CppString(const std::vector<std::string>& in_input, std::vector<st…
|
D | ITestService.h | 565 …virtual ::ndk::ScopedAStatus ReverseUtf8CppString(const std::vector<std::string>& in_input, std::v… 638 …::ndk::ScopedAStatus ReverseUtf8CppString(const std::vector<std::string>& in_input, std::vector<st…
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/ |
D | BnTestService.h | 267 …::android::binder::Status ReverseUtf8CppString(const ::std::vector<::std::string>& input, ::std::v… in ReverseUtf8CppString() function 268 return _aidl_delegate->ReverseUtf8CppString(input, repeated, _aidl_return); in ReverseUtf8CppString()
|
D | BpTestService.h | 68 …::android::binder::Status ReverseUtf8CppString(const ::std::vector<::std::string>& input, ::std::v…
|
D | ITestService.h | 476 …virtual ::android::binder::Status ReverseUtf8CppString(const ::std::vector<::std::string>& input, … 657 …::android::binder::Status ReverseUtf8CppString(const ::std::vector<::std::string>& /*input*/, ::st… in ReverseUtf8CppString() function
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestServiceClient.java | 635 String[] reversed = service.ReverseUtf8CppString(input, echoed); in testReverseUtf8StringArray() 674 assertThrows(NullPointerException.class, () -> service.ReverseUtf8CppString(null, null)); in testOutArrayWithNull()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 71 …fn r#ReverseUtf8CppString(&self, _arg_input: &[String], _arg_repeated: &mut Vec<String>) -> binder… 149 …fn r#ReverseUtf8CppString<'a>(&'a self, _arg_input: &'a [String], _arg_repeated: &'a mut Vec<Strin… 222 …async fn r#ReverseUtf8CppString(&self, _arg_input: &[String], _arg_repeated: &mut Vec<String>) -> … 417 …fn r#ReverseUtf8CppString(&self, _arg_input: &[String], _arg_repeated: &mut Vec<String>) -> binder… in new_async_binder() 418 self._rt.block_on(self._inner.r#ReverseUtf8CppString(_arg_input, _arg_repeated)) in new_async_binder() 627 …fn r#ReverseUtf8CppString(&self, _arg_input: &[String], _arg_repeated: &mut Vec<String>) -> binder… 727 …pub const r#ReverseUtf8CppString: binder::binder_impl::TransactionCode = binder::binder_impl::FIRS… 1822 return _aidl_default_impl.r#ReverseUtf8CppString(_arg_input, _arg_repeated); in read_response_ReverseUtf8CppString() 2354 …fn r#ReverseUtf8CppString(&self, _arg_input: &[String], _arg_repeated: &mut Vec<String>) -> binder… 2356 …let _aidl_reply = self.binder.submit_transact(transactions::r#ReverseUtf8CppString, _aidl_data, bi… [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/ |
D | ITestService.java | 239 …@Override public java.lang.String[] ReverseUtf8CppString(java.lang.String[] input, java.lang.Strin… in ReverseUtf8CppString() method in ITestService.Default 547 …@Override public java.lang.String[] ReverseUtf8CppString(java.lang.String[] input, java.lang.Strin… in ReverseUtf8CppString() method in ITestService.Delegator 549 return mImpl.ReverseUtf8CppString(input,repeated); in ReverseUtf8CppString() 1581 java.lang.String[] _result = this.ReverseUtf8CppString(_arg0, _arg1); in onTransact() 3074 …@Override public java.lang.String[] ReverseUtf8CppString(java.lang.String[] input, java.lang.Strin… in ReverseUtf8CppString() method in ITestService.Stub.Proxy 3087 return getDefaultImpl().ReverseUtf8CppString(input, repeated); in ReverseUtf8CppString() 3715 …public java.lang.String[] ReverseUtf8CppString(java.lang.String[] input, java.lang.String[] repeat… in ReverseUtf8CppString() method
|
/system/tools/aidl/tests/rust/ |
D | test_service_async.rs | 194 impl_reverse! {ReverseUtf8CppString, String}
|
D | test_service.rs | 168 impl_reverse! {ReverseUtf8CppString, String}
|
D | test_client.rs | 276 ReverseUtf8CppString,
|
/system/tools/aidl/tests/java/src/android/aidl/service/ |
D | TestServiceServer.java | 490 public String[] ReverseUtf8CppString(String[] input, String[] repeated) throws RemoteException { in ReverseUtf8CppString() method in TestServiceServer
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/android/aidl/tests/ |
D | ITestService.cpp | 1064 …::ndk::ScopedAStatus _aidl_status = _aidl_impl->ReverseUtf8CppString(in_input, &out_repeated, &_ai… in _aidl_android_aidl_tests_ITestService_onTransact() 3580 ::ndk::ScopedAStatus BpTestService::ReverseUtf8CppString(const std::vector<std::string>& in_input, … in ReverseUtf8CppString() function in aidl::android::aidl::tests::BpTestService 3607 …_aidl_status = ITestService::getDefaultImpl()->ReverseUtf8CppString(in_input, out_repeated, _aidl_… in ReverseUtf8CppString() 4528 ::ndk::ScopedAStatus ITestServiceDefault::ReverseUtf8CppString(const std::vector<std::string>& /*in… in ReverseUtf8CppString() 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 | 2179 ::android::binder::Status BpTestService::ReverseUtf8CppString(const ::std::vector<::std::string>& i… in ReverseUtf8CppString() function in android::aidl::tests::BpTestService 2201 return ITestService::getDefaultImpl()->ReverseUtf8CppString(input, repeated, _aidl_return); in ReverseUtf8CppString() 4549 …::android::binder::Status _aidl_status(ReverseUtf8CppString(in_input, &out_repeated, &_aidl_return… in onTransact()
|