Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/
DIBinderRpcTest.aidl19 @utf8InCpp String doubleString(@utf8InCpp String str); in doubleString() method
DbinderSafeInterfaceTest.cpp259 virtual status_t doubleString(const String8& str, String8* doubleStr) const = 0;
332 status_t doubleString(const String8& str, String8* doubleStr) const override { in doubleString() function in android::tests::BpSafeInterfaceTest
334 return callRemote<decltype(&ISafeInterfaceTest::doubleString)>(Tag::DoubleString, str, in doubleString()
458 status_t doubleString(const String8& str, String8* doubleStr) const override { in doubleString() function in android::tests::BnSafeInterfaceTest
552 return callLocal(data, reply, &ISafeInterfaceTest::doubleString); in onTransact()
732 status_t result = mSafeInterfaceTest->doubleString(str, &doubleStr); in TEST_F()
DbinderRpcTest.cpp97 Status doubleString(const std::string& str, std::string* strstr) override { in doubleString() function in android::MyBinderRpcTest
482 EXPECT_OK(proc.rootIface->doubleString("cool ", &doubled)); in TEST_P()
490 EXPECT_OK(proc.rootIface->doubleString(single, &doubled)); in TEST_P()
909 ndk::ScopedAStatus status = ndkBinder->doubleString("aoeu", &out); in TEST_P()