| 994 | } |
| 995 | |
| 996 | uintptr_t ElfScanner::findSymbol(const std::string &symbolName) |
| 997 | { |
| 998 | const auto &syms = symbols(); |
| 999 | auto it = syms.find(symbolName); |
| 1000 | return it != syms.end() ? it->second : 0; |
| 1001 | } |
| 1002 | |
| 1003 | uintptr_t ElfScanner::findDebugSymbol(const std::string &symbolName) |
| 1004 | { |
no test coverage detected