Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/linux/
Delfutils.cc120 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()
Dfile_id.cc96 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()
Delfutils.h89 bool FindElfSection(const void *elf_mapped_base,
114 bool FindElfSegments(const void* elf_mapped_base,
/external/libchrome/base/debug/
Delf_reader_linux.cc70 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()