Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp256 virtual status_t toUpper(const String8& str, String8* upperStr) const = 0;
329 status_t toUpper(const String8& str, String8* upperStr) const override { in toUpper()
331 return callRemote<decltype(&ISafeInterfaceTest::toUpper)>(Tag::ToUpper, str, upperStr); in toUpper()
454 status_t toUpper(const String8& str, String8* upperStr) const override { in toUpper()
456 *upperStr = str; in toUpper()
457 upperStr->toUpper(); in toUpper()
755 String8 upperStr; in TEST_F() local
756 status_t result = mSafeInterfaceTest->toUpper(str, &upperStr); in TEST_F()
758 ASSERT_TRUE(upperStr == String8{"HELLO, WORLD!"}); in TEST_F()