| 1001 | } |
| 1002 | |
| 1003 | uintptr_t ElfScanner::findDebugSymbol(const std::string &symbolName) |
| 1004 | { |
| 1005 | const auto &syms = dsymbols(); |
| 1006 | auto it = syms.find(symbolName); |
| 1007 | return it != syms.end() ? it->second : 0; |
| 1008 | } |
| 1009 | |
| 1010 | bool ElfScannerMgr::isValidELF(uintptr_t elfBase) const |
| 1011 | { |