Home
last modified time | relevance | path

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

/system/tools/hidl/test/hidl_test/
Dhidl_test_client.cpp2146 sp<IOtherInterface> otherInterface = new OtherInterface(); in TEST_F() local
2147 ASSERT_EQ(1, otherInterface->getStrongCount()); in TEST_F()
2150 safeUnion.c(otherInterface); in TEST_F()
2151 EXPECT_EQ(2, otherInterface->getStrongCount()); in TEST_F()
2156 EXPECT_EQ(2, otherInterface->getStrongCount()); in TEST_F()
2175 sp<IOtherInterface> otherInterface = new OtherInterface(); in TEST_F() local
2176 ASSERT_EQ(1, otherInterface->getStrongCount()); in TEST_F()
2179 safeUnion.c(otherInterface); in TEST_F()
2180 EXPECT_EQ(2, otherInterface->getStrongCount()); in TEST_F()
2188 EXPECT_EQ(2, otherInterface->getStrongCount()); in TEST_F()
[all …]
/system/tools/hidl/test/java_test/
Dhidl_test_java_native.cpp225 sp<IOtherInterface> otherInterface; member
241 otherInterface = IOtherInterface::getService(); in SetUp()
242 CHECK(otherInterface != nullptr); in SetUp()
243 CHECK(otherInterface->isRemote()); in SetUp()
975 safeUnion.c(otherInterface); in TEST_F()
1251 sp<IOtherInterface> otherInterface = new OtherInterface(); in main() local
1252 status = otherInterface->registerAsService(); in main()
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java372 IOtherInterface otherInterface = IOtherInterface.getService(); in runClientSafeUnionTests() local
384 safeUnion.c(otherInterface); in runClientSafeUnionTests()
386 ExpectTrue(HidlSupport.interfacesEqual(otherInterface, safeUnion.c())); in runClientSafeUnionTests()
1751 OtherInterface otherInterface = new OtherInterface(); in server() local
1752 otherInterface.registerAsService("default"); in server()