Home | History | Annotate | Download | only in functional

Lines Matching defs:service

48     sp<IBase> service;
58 << "Failed to get default service manager." << std::endl;
71 sp<IBase> service = default_manager_->get(fqName, instance);
72 if (service == nullptr) {
73 ADD_FAILURE() << "Null service for " << name << " " << fqName << " "
78 sp<IBinder> binder = toBinder(service);
89 all_hals_.insert(iter, {binder, Hal{service, strName}});
103 // default service manager
108 // this prevents calling the same service twice since the same service
116 [&](const Hal& base) { EXPECT_OK(base.service->ping()) << "Cannot ping " << base.name; });
121 EXPECT_OK(base.service->interfaceChain([&](const auto& interfaceChain) {
130 EXPECT_OK(base.service->interfaceDescriptor([&](const auto& descriptor) {
145 EXPECT_OK(base.service->linkToDeath(recipient, 0 /* cookie */))
147 EXPECT_OK(base.service->unlinkToDeath(recipient)) << "Unlink death recipient " << base.name;
154 EXPECT_OK(base.service->debug(hidl_handle(), {}))
161 EXPECT_OK(base.service->getHashChain([&](const auto& hashChain) {