Home
last modified time | relevance | path

Searched refs:RepeatNullableString (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/binder_ndk/libbinder_ndk_test/test_package/
DITest.aidl77 @nullable String RepeatNullableString(@nullable String value); in RepeatNullableString() method
/cts/tests/tests/binder_ndk/src/android/binder/cts/
DJavaClientTest.java294 assertEquals(null, mInterface.RepeatNullableString(null)); in testRepeatNullableString()
295 assertEquals("", mInterface.RepeatNullableString("")); in testRepeatNullableString()
296 assertEquals("a", mInterface.RepeatNullableString("a")); in testRepeatNullableString()
297 assertEquals("foo", mInterface.RepeatNullableString("foo")); in testRepeatNullableString()
DTestImpl.java191 public String RepeatNullableString(String in_value) { in RepeatNullableString() method in TestImpl
/cts/tests/tests/binder_ndk/libbinder_ndk_test/
Dtest_native_aidl_client.cpp479 TEST_P(NdkBinderTest_Aidl, RepeatNullableString) { in TEST_P() argument
482 EXPECT_OK(iface->RepeatNullableString(std::nullopt, &res)); in TEST_P()
485 EXPECT_OK(iface->RepeatNullableString("", &res)); in TEST_P()
488 EXPECT_OK(iface->RepeatNullableString("a", &res)); in TEST_P()
491 EXPECT_OK(iface->RepeatNullableString("say what?", &res)); in TEST_P()
Ditest_impl.h207 ::ndk::ScopedAStatus RepeatNullableString( in RepeatNullableString() function