| 185 | |
| 186 | template<typename INTERFACE> |
| 187 | inline sp<IInterface> BnInterface<INTERFACE>::queryLocalInterface( |
| 188 | const String16& _descriptor) |
| 189 | { |
| 190 | if (_descriptor == INTERFACE::descriptor) return sp<IInterface>::fromExisting(this); |
| 191 | return nullptr; |
| 192 | } |
| 193 | |
| 194 | template<typename INTERFACE> |
| 195 | inline const String16& BnInterface<INTERFACE>::getInterfaceDescriptor() const |
no outgoing calls
no test coverage detected