Searched refs:elf_mapped_base (Results 1 – 4 of 4) sorted by relevance
/external/google-breakpad/src/common/linux/ |
D | elfutils.cc | 120 bool FindElfSection(const void *elf_mapped_base, in FindElfSection() argument 125 assert(elf_mapped_base); in FindElfSection() 132 if (!IsValidElf(elf_mapped_base)) in FindElfSection() 135 int cls = ElfClass(elf_mapped_base); in FindElfSection() 137 static_cast<const char*>(elf_mapped_base); in FindElfSection() 152 bool FindElfSegments(const void* elf_mapped_base, in FindElfSegments() argument 155 assert(elf_mapped_base); in FindElfSegments() 158 if (!IsValidElf(elf_mapped_base)) in FindElfSegments() 161 int cls = ElfClass(elf_mapped_base); in FindElfSegments() 163 static_cast<const char*>(elf_mapped_base); in FindElfSegments()
|
D | file_id.cc | 96 static bool FindElfBuildIDNote(const void* elf_mapped_base, in FindElfBuildIDNote() argument 101 if (FindElfSegments(elf_mapped_base, PT_NOTE, &segs)) { in FindElfBuildIDNote() 111 if (FindElfSection(elf_mapped_base, ".note.gnu.build-id", SHT_NOTE, in FindElfBuildIDNote() 121 static bool HashElfTextSection(const void* elf_mapped_base, in HashElfTextSection() argument 127 if (!FindElfSection(elf_mapped_base, ".text", SHT_PROGBITS, in HashElfTextSection()
|
D | elfutils.h | 89 bool FindElfSection(const void *elf_mapped_base, 114 bool FindElfSegments(const void* elf_mapped_base,
|
/external/libchrome/base/debug/ |
D | elf_reader_linux.cc | 70 std::vector<ElfSegment> FindElfSegments(const void* elf_mapped_base, in FindElfSegments() argument 72 const char* elf_base = reinterpret_cast<const char*>(elf_mapped_base); in FindElfSegments()
|