Searched refs:cpp_java_tests (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestServiceClient.java | 78 private ICppJavaTests cpp_java_tests; field in TestServiceClient 89 cpp_java_tests = ICppJavaTests.Stub.asInterface(binder2); in setUp() 363 assumeTrue(cpp_java_tests != null); in testRepeatGenericParcelable() 374 cpp_java_tests.RepeatGenericParcelable(input, out_param); in testRepeatGenericParcelable() 383 assumeTrue(cpp_java_tests != null); in testBadParcelable() 386 assertThrows(BadParcelableException.class, () -> cpp_java_tests.RepeatBadParcelable(bad)); in testBadParcelable() 390 BadParcelable output = cpp_java_tests.RepeatBadParcelable(notBad); in testBadParcelable() 420 assumeTrue(cpp_java_tests != null); in testRepeatEmptyPersistableBundle() 423 PersistableBundle returned = cpp_java_tests.RepeatPersistableBundle(emptyBundle); in testRepeatEmptyPersistableBundle() 430 assumeTrue(cpp_java_tests != null); in testRepeatNonEmptyPersistableBundle() [all …]
|
/aosp_15_r20/system/tools/aidl/tests/ |
D | aidl_test_client_parcelables.cpp | 66 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 71 Status status = cpp_java_tests->RepeatBadParcelable(bad, &output); in TEST_F() 77 Status status = cpp_java_tests->RepeatBadParcelable(not_bad, &output); in TEST_F() 93 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 98 Status status = cpp_java_tests->RepeatGenericParcelable(input, &out_param, &returned); in TEST_F() 176 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 179 Status status = cpp_java_tests->RepeatPersistableBundle(empty_bundle, &returned); in TEST_F() 185 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 206 Status status = cpp_java_tests->RepeatPersistableBundle(non_empty_bundle, &returned); in TEST_F() 212 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() [all …]
|
D | aidl_test_client_file_descriptors.cpp | 66 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 73 auto status = cpp_java_tests->RepeatFileDescriptor(std::move(write_fd), &return_fd); in TEST_F() 85 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 101 auto status = cpp_java_tests->ReverseFileDescriptorArray(array, &repeated, &reversed); in TEST_F()
|
D | aidl_test_client.h | 46 cpp_java_tests = android::interface_cast<ICppJavaTests>(ibinder); in SetUp() 52 ASSERT_NE(cpp_java_tests, nullptr); in SetUp() 58 sp<ICppJavaTests> cpp_java_tests; variable
|
D | aidl_test_client_primitives.cpp | 279 if (cpp_java_tests) { in TEST_F() 282 auto status = cpp_java_tests->ReverseNamedCallbackList(input, &output, &reversed); in TEST_F()
|