| 103 | // Utility functions for accessing NOTE sections |
| 104 | |
| 105 | struct NoteData |
| 106 | { |
| 107 | Elf* elf{nullptr}; |
| 108 | Elf_Data* data{nullptr}; |
| 109 | Elf64_Xword descriptor_size{0}; |
| 110 | size_t desc_offset{0}; |
| 111 | GElf_Nhdr nhdr{}; |
| 112 | }; |
| 113 | |
| 114 | std::vector<NoteData> |
| 115 | getNoteData(Elf* elf, Elf64_Word note_type, Elf_Type note_data_type); |
nothing calls this directly
no outgoing calls
no test coverage detected