Searched defs:elf_base (Results 1 - 3 of 3) sorted by relevance

/external/google-breakpad/src/common/linux/
H A Delfutils.cc43 void FindElfClassSection(const char *elf_base, argument
51 assert(elf_base);
55 assert(my_strncmp(elf_base, ELFMAG, SELFMAG) == 0);
57 const Ehdr* elf_header = reinterpret_cast<const Ehdr*>(elf_base);
73 *section_start = elf_base + section->sh_offset;
79 void FindElfClassSegment(const char *elf_base, argument
86 assert(elf_base);
90 assert(my_strncmp(elf_base, ELFMAG, SELFMAG) == 0);
92 const Ehdr* elf_header = reinterpret_cast<const Ehdr*>(elf_base);
100 *segment_start = elf_base
109 IsValidElf(const void* elf_base) argument
114 ElfClass(const void* elf_base) argument
142 const char* elf_base = local
178 const char* elf_base = local
[all...]
/external/google-breakpad/src/common/solaris/
H A Dfile_id.cc65 static bool FindElfTextSection(int fd, const void *elf_base, argument
123 *text_start = (char *)elf_base + text_section->sh_offset;
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper.cc145 const void* elf_base, char* soname, size_t soname_size) {
146 if (!IsValidElf(elf_base)) {
154 if (!FindElfSection(elf_base, ".dynamic", SHT_DYNAMIC,
162 if (!FindElfSection(elf_base, ".dynstr", SHT_STRTAB,
144 ElfFileSoNameFromMappedFile( const void* elf_base, char* soname, size_t soname_size) argument

Completed in 172 milliseconds