| 115 | getNoteData(Elf* elf, Elf64_Word note_type, Elf_Type note_data_type); |
| 116 | |
| 117 | struct SectionInfo |
| 118 | { |
| 119 | std::string name; |
| 120 | std::string flags; |
| 121 | uintptr_t addr; |
| 122 | uintptr_t corrected_addr; |
| 123 | off_t offset; |
| 124 | size_t size; |
| 125 | }; |
| 126 | |
| 127 | bool |
| 128 | getSectionInfo(const std::string& filename, const std::string& section_name, SectionInfo* result); |
nothing calls this directly
no outgoing calls
no test coverage detected