| 36 | } |
| 37 | |
| 38 | const IFaceFunction *IFaceTableMixer::FindFunctionByConstantName(const char *name) const { |
| 39 | for (auto const &iface : ifaces) { |
| 40 | const IFaceFunction *ret = iface->FindFunctionByConstantName(name); |
| 41 | if (ret != nullptr) return ret; |
| 42 | } |
| 43 | return nullptr; |
| 44 | } |
| 45 | |
| 46 | const IFaceFunction *IFaceTableMixer::FindFunctionByValue(int value) const { |
| 47 | for (auto const &iface : ifaces) { |
nothing calls this directly
no outgoing calls
no test coverage detected