summaryrefslogtreecommitdiffstats
path: root/tests/aidl_test_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aidl_test_service.cpp')
-rw-r--r--tests/aidl_test_service.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/aidl_test_service.cpp b/tests/aidl_test_service.cpp
index abea6ae..c5e4bcd 100644
--- a/tests/aidl_test_service.cpp
+++ b/tests/aidl_test_service.cpp
@@ -399,6 +399,14 @@ class NativeService : public BnTestService {
return ReverseArray(input, repeated, _aidl_return);
}
+ Status ReverseNullableUtf8CppString(
+ const unique_ptr<vector<unique_ptr<string>>>& input,
+ unique_ptr<vector<unique_ptr<string>>>* repeated,
+ unique_ptr<vector<unique_ptr<string>>>* _aidl_return) {
+
+ return ReverseUtf8CppStringList(input, repeated, _aidl_return);
+ }
+
Status ReverseUtf8CppStringList(
const unique_ptr<vector<unique_ptr<::string>>>& input,
unique_ptr<vector<unique_ptr<string>>>* repeated,