* @brief Constructs ElfScanner class with the given process memory map info. * * @param elfMap The base process memory map of the ELF file. */
| 547 | * @param elfMap The base process memory map of the ELF file. |
| 548 | */ |
| 549 | inline ElfScanner createWithMap(const KittyMemoryEx::ProcMap &map) const |
| 550 | { |
| 551 | return !_pMem ? ElfScanner() : ElfScanner(_pMem, map.startAddress); |
| 552 | } |
| 553 | #ifdef __ANDROID__ |
| 554 | /** |
| 555 | * @brief Constructs ElfScanner class with the given soinfo. |