├── .gitignore ├── Android.mk ├── CMakeLists.txt ├── LICENSE.txt ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── aidl-cpp.sublime-project ├── aidl.cpp ├── aidl.h ├── aidl_language.cpp ├── aidl_language.h ├── aidl_language_l.ll ├── aidl_language_y.yy ├── aidl_unittest.cpp ├── ast_cpp.cpp ├── ast_cpp.h ├── ast_cpp_unittest.cpp ├── ast_java.cpp ├── ast_java.h ├── ast_java_unittest.cpp ├── base ├── errors_test.cpp ├── errors_unix.cpp ├── errors_windows.cpp ├── file.cpp ├── file_test.cpp ├── include │ ├── android-base │ │ ├── logging.h │ │ ├── macros.h │ │ ├── parseint.h │ │ ├── stringprintf.h │ │ └── strings.h │ └── gtest │ │ └── gtest_prod.h ├── logging.cpp ├── logging_test.cpp ├── parseint_test.cpp ├── parsenetaddress.cpp ├── parsenetaddress_test.cpp ├── stringprintf.cpp ├── stringprintf_test.cpp ├── strings.cpp ├── strings_test.cpp ├── test_main.cpp ├── test_utils.cpp ├── utf8.cpp └── utf8_test.cpp ├── code_writer.cpp ├── code_writer.h ├── docs ├── aidl-cpp.md ├── constants.md └── making-changes.md ├── generate_cpp.cpp ├── generate_cpp.h ├── generate_cpp_unittest.cpp ├── generate_java.cpp ├── generate_java.h ├── generate_java_binder.cpp ├── import_resolver.cpp ├── import_resolver.h ├── io_delegate.cpp ├── io_delegate.h ├── io_delegate_unittest.cpp ├── line_reader.cpp ├── line_reader.h ├── logging.h ├── main_cpp.cpp ├── main_java.cpp ├── options.cpp ├── options.h ├── options_unittest.cpp ├── os.h ├── tests ├── aidl_test_client.cpp ├── aidl_test_client_file_descriptors.cpp ├── aidl_test_client_file_descriptors.h ├── aidl_test_client_nullables.cpp ├── aidl_test_client_nullables.h ├── aidl_test_client_parcelables.cpp ├── aidl_test_client_parcelables.h ├── aidl_test_client_primitives.cpp ├── aidl_test_client_primitives.h ├── aidl_test_client_service_exceptions.cpp ├── aidl_test_client_service_exceptions.h ├── aidl_test_client_utf8_strings.cpp ├── aidl_test_client_utf8_strings.h ├── aidl_test_sentinel_searcher.cpp ├── aidl_test_service.cpp ├── android │ └── aidl │ │ └── tests │ │ ├── INamedCallback.aidl │ │ ├── ITestService.aidl │ │ └── SimpleParcelable.aidl ├── end_to_end_tests.cpp ├── fake_io_delegate.cpp ├── fake_io_delegate.h ├── integration-test.py ├── java_app │ ├── AndroidManifest.xml │ ├── README │ ├── resources │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── android │ │ └── aidl │ │ └── tests │ │ ├── NullableTests.java │ │ ├── SimpleParcelable.java │ │ ├── TestFailException.java │ │ ├── TestLogger.java │ │ └── TestServiceClient.java ├── main.cpp ├── simple_parcelable.cpp ├── simple_parcelable.h ├── test_data.h ├── test_data_example_interface.cpp ├── test_data_ping_responder.cpp ├── test_data_string_constants.cpp ├── test_helpers.h ├── test_util.cpp └── test_util.h ├── type_cpp.cpp ├── type_cpp.h ├── type_cpp_unittest.cpp ├── type_java.cpp ├── type_java.h ├── type_java_unittest.cpp ├── type_namespace.cpp └── type_namespace.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/NOTICE -------------------------------------------------------------------------------- /aidl-cpp.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl-cpp.sublime-project -------------------------------------------------------------------------------- /aidl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl.cpp -------------------------------------------------------------------------------- /aidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl.h -------------------------------------------------------------------------------- /aidl_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl_language.cpp -------------------------------------------------------------------------------- /aidl_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl_language.h -------------------------------------------------------------------------------- /aidl_language_l.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl_language_l.ll -------------------------------------------------------------------------------- /aidl_language_y.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl_language_y.yy -------------------------------------------------------------------------------- /aidl_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/aidl_unittest.cpp -------------------------------------------------------------------------------- /ast_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_cpp.cpp -------------------------------------------------------------------------------- /ast_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_cpp.h -------------------------------------------------------------------------------- /ast_cpp_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_cpp_unittest.cpp -------------------------------------------------------------------------------- /ast_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_java.cpp -------------------------------------------------------------------------------- /ast_java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_java.h -------------------------------------------------------------------------------- /ast_java_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/ast_java_unittest.cpp -------------------------------------------------------------------------------- /base/errors_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/errors_test.cpp -------------------------------------------------------------------------------- /base/errors_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/errors_unix.cpp -------------------------------------------------------------------------------- /base/errors_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/errors_windows.cpp -------------------------------------------------------------------------------- /base/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/file.cpp -------------------------------------------------------------------------------- /base/file_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/file_test.cpp -------------------------------------------------------------------------------- /base/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/android-base/logging.h -------------------------------------------------------------------------------- /base/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/android-base/macros.h -------------------------------------------------------------------------------- /base/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/android-base/parseint.h -------------------------------------------------------------------------------- /base/include/android-base/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/android-base/stringprintf.h -------------------------------------------------------------------------------- /base/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/android-base/strings.h -------------------------------------------------------------------------------- /base/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /base/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/logging.cpp -------------------------------------------------------------------------------- /base/logging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/logging_test.cpp -------------------------------------------------------------------------------- /base/parseint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/parseint_test.cpp -------------------------------------------------------------------------------- /base/parsenetaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/parsenetaddress.cpp -------------------------------------------------------------------------------- /base/parsenetaddress_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/parsenetaddress_test.cpp -------------------------------------------------------------------------------- /base/stringprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/stringprintf.cpp -------------------------------------------------------------------------------- /base/stringprintf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/stringprintf_test.cpp -------------------------------------------------------------------------------- /base/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/strings.cpp -------------------------------------------------------------------------------- /base/strings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/strings_test.cpp -------------------------------------------------------------------------------- /base/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/test_main.cpp -------------------------------------------------------------------------------- /base/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/test_utils.cpp -------------------------------------------------------------------------------- /base/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/utf8.cpp -------------------------------------------------------------------------------- /base/utf8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/base/utf8_test.cpp -------------------------------------------------------------------------------- /code_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/code_writer.cpp -------------------------------------------------------------------------------- /code_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/code_writer.h -------------------------------------------------------------------------------- /docs/aidl-cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/docs/aidl-cpp.md -------------------------------------------------------------------------------- /docs/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/docs/constants.md -------------------------------------------------------------------------------- /docs/making-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/docs/making-changes.md -------------------------------------------------------------------------------- /generate_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_cpp.cpp -------------------------------------------------------------------------------- /generate_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_cpp.h -------------------------------------------------------------------------------- /generate_cpp_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_cpp_unittest.cpp -------------------------------------------------------------------------------- /generate_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_java.cpp -------------------------------------------------------------------------------- /generate_java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_java.h -------------------------------------------------------------------------------- /generate_java_binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/generate_java_binder.cpp -------------------------------------------------------------------------------- /import_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/import_resolver.cpp -------------------------------------------------------------------------------- /import_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/import_resolver.h -------------------------------------------------------------------------------- /io_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/io_delegate.cpp -------------------------------------------------------------------------------- /io_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/io_delegate.h -------------------------------------------------------------------------------- /io_delegate_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/io_delegate_unittest.cpp -------------------------------------------------------------------------------- /line_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/line_reader.cpp -------------------------------------------------------------------------------- /line_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/line_reader.h -------------------------------------------------------------------------------- /logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/logging.h -------------------------------------------------------------------------------- /main_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/main_cpp.cpp -------------------------------------------------------------------------------- /main_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/main_java.cpp -------------------------------------------------------------------------------- /options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/options.cpp -------------------------------------------------------------------------------- /options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/options.h -------------------------------------------------------------------------------- /options_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/options_unittest.cpp -------------------------------------------------------------------------------- /os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/os.h -------------------------------------------------------------------------------- /tests/aidl_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_file_descriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_file_descriptors.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_file_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_file_descriptors.h -------------------------------------------------------------------------------- /tests/aidl_test_client_nullables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_nullables.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_nullables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_nullables.h -------------------------------------------------------------------------------- /tests/aidl_test_client_parcelables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_parcelables.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_parcelables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_parcelables.h -------------------------------------------------------------------------------- /tests/aidl_test_client_primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_primitives.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_primitives.h -------------------------------------------------------------------------------- /tests/aidl_test_client_service_exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_service_exceptions.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_service_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_service_exceptions.h -------------------------------------------------------------------------------- /tests/aidl_test_client_utf8_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_utf8_strings.cpp -------------------------------------------------------------------------------- /tests/aidl_test_client_utf8_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_client_utf8_strings.h -------------------------------------------------------------------------------- /tests/aidl_test_sentinel_searcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_sentinel_searcher.cpp -------------------------------------------------------------------------------- /tests/aidl_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/aidl_test_service.cpp -------------------------------------------------------------------------------- /tests/android/aidl/tests/INamedCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/android/aidl/tests/INamedCallback.aidl -------------------------------------------------------------------------------- /tests/android/aidl/tests/ITestService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/android/aidl/tests/ITestService.aidl -------------------------------------------------------------------------------- /tests/android/aidl/tests/SimpleParcelable.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/android/aidl/tests/SimpleParcelable.aidl -------------------------------------------------------------------------------- /tests/end_to_end_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/end_to_end_tests.cpp -------------------------------------------------------------------------------- /tests/fake_io_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/fake_io_delegate.cpp -------------------------------------------------------------------------------- /tests/fake_io_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/fake_io_delegate.h -------------------------------------------------------------------------------- /tests/integration-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/integration-test.py -------------------------------------------------------------------------------- /tests/java_app/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/java_app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/README -------------------------------------------------------------------------------- /tests/java_app/resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/resources/values/strings.xml -------------------------------------------------------------------------------- /tests/java_app/src/android/aidl/tests/NullableTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/src/android/aidl/tests/NullableTests.java -------------------------------------------------------------------------------- /tests/java_app/src/android/aidl/tests/SimpleParcelable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/src/android/aidl/tests/SimpleParcelable.java -------------------------------------------------------------------------------- /tests/java_app/src/android/aidl/tests/TestFailException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/src/android/aidl/tests/TestFailException.java -------------------------------------------------------------------------------- /tests/java_app/src/android/aidl/tests/TestLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/src/android/aidl/tests/TestLogger.java -------------------------------------------------------------------------------- /tests/java_app/src/android/aidl/tests/TestServiceClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/java_app/src/android/aidl/tests/TestServiceClient.java -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/simple_parcelable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/simple_parcelable.cpp -------------------------------------------------------------------------------- /tests/simple_parcelable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/simple_parcelable.h -------------------------------------------------------------------------------- /tests/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_data.h -------------------------------------------------------------------------------- /tests/test_data_example_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_data_example_interface.cpp -------------------------------------------------------------------------------- /tests/test_data_ping_responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_data_ping_responder.cpp -------------------------------------------------------------------------------- /tests/test_data_string_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_data_string_constants.cpp -------------------------------------------------------------------------------- /tests/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_helpers.h -------------------------------------------------------------------------------- /tests/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_util.cpp -------------------------------------------------------------------------------- /tests/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/tests/test_util.h -------------------------------------------------------------------------------- /type_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_cpp.cpp -------------------------------------------------------------------------------- /type_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_cpp.h -------------------------------------------------------------------------------- /type_cpp_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_cpp_unittest.cpp -------------------------------------------------------------------------------- /type_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_java.cpp -------------------------------------------------------------------------------- /type_java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_java.h -------------------------------------------------------------------------------- /type_java_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_java_unittest.cpp -------------------------------------------------------------------------------- /type_namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_namespace.cpp -------------------------------------------------------------------------------- /type_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiking90/aidl-cpp/HEAD/type_namespace.h --------------------------------------------------------------------------------