| 28 | } |
| 29 | |
| 30 | const IFaceFunction *IFaceTableMixer::FindFunction(const char *name) const { |
| 31 | for (auto const &iface : ifaces) { |
| 32 | const IFaceFunction *ret = iface->FindFunction(name); |
| 33 | if (ret != nullptr) return ret; |
| 34 | } |
| 35 | return nullptr; |
| 36 | } |
| 37 | |
| 38 | const IFaceFunction *IFaceTableMixer::FindFunctionByConstantName(const char *name) const { |
| 39 | for (auto const &iface : ifaces) { |
nothing calls this directly
no outgoing calls
no test coverage detected