Searched refs:cpp_java_tests (Results 1 – 6 of 6) sorted by relevance
/aosp12/system/tools/aidl/tests/ |
H A D | aidl_test_client_nullables.cpp | 124 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 127 auto status = cpp_java_tests->TakesAnIBinderList(input); in TEST_F() 143 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 146 auto status = cpp_java_tests->TakesAnIBinderList(input); in TEST_F() 156 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 159 auto status = cpp_java_tests->TakesANullableIBinderList(input); in TEST_F() 170 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 173 auto status = cpp_java_tests->TakesANullableIBinderList(input); in TEST_F()
|
H A D | aidl_test_client_parcelables.cpp | 51 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 55 Status status = cpp_java_tests->RepeatSimpleParcelable(input, &out_param, &returned); in TEST_F() 62 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 67 Status status = cpp_java_tests->RepeatGenericParcelable(input, &out_param, &returned); in TEST_F() 74 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 84 Status status = cpp_java_tests->ReverseSimpleParcelables(original, &repeated, &reversed); in TEST_F() 94 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 97 Status status = cpp_java_tests->RepeatPersistableBundle(empty_bundle, &returned); in TEST_F() 103 if (!cpp_java_tests) GTEST_SKIP() << "Service does not support the CPP/Java-only tests."; in TEST_F() 124 Status status = cpp_java_tests->RepeatPersistableBundle(non_empty_bundle, &returned); in TEST_F() [all …]
|
H A D | aidl_test_client.h | 43 cpp_java_tests = android::interface_cast<ICppJavaTests>(ibinder); in SetUp() 49 ASSERT_NE(cpp_java_tests, nullptr); in SetUp() 55 sp<ICppJavaTests> cpp_java_tests; variable
|
H A 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()
|
H A D | aidl_test_client_primitives.cpp | 200 if (cpp_java_tests) { in TEST_F() 203 auto status = cpp_java_tests->ReverseNamedCallbackList(input, &output, &reversed); in TEST_F()
|
/aosp12/system/tools/aidl/tests/java/src/android/aidl/tests/ |
H A D | TestServiceClient.java | 67 private ICppJavaTests cpp_java_tests; field in TestServiceClient 78 cpp_java_tests = ICppJavaTests.Stub.asInterface(binder2); in setUp() 298 assumeTrue(cpp_java_tests != null); in testRepeatGenericParcelable() 309 cpp_java_tests.RepeatGenericParcelable(input, out_param); in testRepeatGenericParcelable() 318 assumeTrue(cpp_java_tests != null); in testRepeatParcelable() 329 assumeTrue(cpp_java_tests != null); in testReverseParcelable() 346 assumeTrue(cpp_java_tests != null); in testRepeatEmptyPersistableBundle() 356 assumeTrue(cpp_java_tests != null); in testRepeatNonEmptyPersistableBundle() 408 assumeTrue(cpp_java_tests != null); in testReversePersistableBundleArray() 442 assumeTrue(cpp_java_tests != null); in testFileDescriptorPassing() [all …]
|