| 30 | } |
| 31 | |
| 32 | bool ServiceRegistrationBasePrivate::IsUsedByModule(Module* p) const |
| 33 | { |
| 34 | return (dependents.find(p) != dependents.end()) || |
| 35 | (prototypeServiceInstances.find(p) != prototypeServiceInstances.end()); |
| 36 | } |
| 37 | |
| 38 | const InterfaceMap& ServiceRegistrationBasePrivate::GetInterfaces() const |
| 39 | { |
no test coverage detected