Home
last modified time | relevance | path

Searched refs:elf_mapped_base (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/common/linux/
Delfutils.cc121 bool FindElfSection(const void *elf_mapped_base, in FindElfSection() argument
127 assert(elf_mapped_base); in FindElfSection()
134 if (!IsValidElf(elf_mapped_base)) in FindElfSection()
137 int cls = ElfClass(elf_mapped_base); in FindElfSection()
143 static_cast<const char*>(elf_mapped_base); in FindElfSection()
158 bool FindElfSegment(const void *elf_mapped_base, in FindElfSegment() argument
163 assert(elf_mapped_base); in FindElfSegment()
170 if (!IsValidElf(elf_mapped_base)) in FindElfSegment()
173 int cls = ElfClass(elf_mapped_base); in FindElfSegment()
179 static_cast<const char*>(elf_mapped_base); in FindElfSegment()
Dfile_id.cc92 static bool FindElfBuildIDNote(const void *elf_mapped_base, in FindElfBuildIDNote() argument
97 if ((!FindElfSegment(elf_mapped_base, PT_NOTE, in FindElfBuildIDNote()
100 (!FindElfSection(elf_mapped_base, ".note.gnu.build-id", SHT_NOTE, in FindElfBuildIDNote()
119 static bool HashElfTextSection(const void *elf_mapped_base, in HashElfTextSection() argument
123 if (!FindElfSection(elf_mapped_base, ".text", SHT_PROGBITS, in HashElfTextSection()
Delfutils.h78 bool FindElfSection(const void *elf_mapped_base,
101 bool FindElfSegment(const void *elf_mapped_base,