Home
last modified time | relevance | path

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

/system/hwservicemanager/
DHidlService.cpp25 using ::android::hardware::interfacesEqual;
88 if (interfacesEqual(*it, listener.promote())) { in removeListener()
125 if (interfacesEqual(*it, callback)) { in removeClientCallback()
DServiceManager.cpp32 using ::android::hardware::interfacesEqual;
224 if (interfacesEqual(*it, who.promote())) { in removePackageListener()
293 if (otherService != hidlService && interfacesEqual(service, otherService->getService())) { in get()
641 if (!interfacesEqual(service, server)) { in registerClientCallback()
668 if (server == nullptr || interfacesEqual(service->getService(), server)) { in unregisterClientCallback()
737 if (!interfacesEqual(service, server)) { in tryUnregister()
840 if (interfacesEqual(service->getService(), who.promote())) { in removeService()
/system/libhidl/transport/
DHidlTransportSupport.cpp122 bool interfacesEqual(const sp<IBase>& left, const sp<IBase>& right) { in interfacesEqual() function
/system/tools/hidl/test/hidl_test/
Dhidl_test_client.cpp725 using ::android::hardware::interfacesEqual; in TEST_F()
736 EXPECT_TRUE(interfacesEqual(child, IChild::getService(kInstanceName))); in TEST_F()
737 EXPECT_TRUE(interfacesEqual(child, IParent::getService(kInstanceName))); in TEST_F()
743 EXPECT_FALSE(interfacesEqual(parent, IChild::getService(kInstanceName))); in TEST_F()
744 EXPECT_TRUE(interfacesEqual(parent, IParent::getService(kInstanceName))); in TEST_F()
747 EXPECT_TRUE(interfacesEqual(child, IChild::getService(kOtherName))); in TEST_F()
748 EXPECT_TRUE(interfacesEqual(child, IParent::getService(kOtherName))); in TEST_F()
850 using android::hardware::interfacesEqual; in TEST_F()
862 EXPECT_TRUE(interfacesEqual(service1, service2)); in TEST_F()
867 EXPECT_TRUE(interfacesEqual(service1, child)); in TEST_F()
[all …]
/system/libhidl/transport/include/hidl/
DHidlTransportSupport.h117 bool interfacesEqual(const sp<::android::hidl::base::V1_0::IBase>& left,
/system/core/storaged/
Dstoraged.cpp67 using android::hardware::interfacesEqual;
126 if (health != NULL && interfacesEqual(health, who.promote())) { in serviceDied()
/system/hardware/interfaces/suspend/1.0/default/
DSystemSuspend.h43 using ::android::hardware::interfacesEqual;
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java154 ExpectTrue(HidlSupport.interfacesEqual(l, r)); in ExpectEqual()
155 ExpectTrue(HidlSupport.interfacesEqual(r, l)); in ExpectEqual()
160 ExpectFalse(HidlSupport.interfacesEqual(l, r)); in ExpectNotEqual()
161 ExpectFalse(HidlSupport.interfacesEqual(r, l)); in ExpectNotEqual()
384 ExpectTrue(HidlSupport.interfacesEqual(anInterface, safeUnion.c())); in runClientSafeUnionTests()
1222 ExpectTrue(HidlSupport.interfacesEqual(swi.iface, swi_back.iface)); in client()
/system/tools/hidl/test/java_test/
Dhidl_test_java_native.cpp964 using android::hardware::interfacesEqual; in TEST_F()
970 EXPECT_TRUE(interfacesEqual(safeUnion.c(), defaultServiceManager())); in TEST_F()