Searched defs:Shdr (Results 1 - 8 of 8) sorted by relevance

/external/google-breakpad/src/common/linux/
H A Delfutils.h49 typedef Elf32_Shdr Shdr; typedef in struct:google_breakpad::ElfClass32
62 typedef Elf64_Shdr Shdr; typedef in struct:google_breakpad::ElfClass64
88 const typename ElfClass::Shdr*
91 const typename ElfClass::Shdr* sections,
H A Delfutils.cc49 typedef typename ElfClass::Shdr Shdr; typedef
60 const Shdr* sections =
61 GetOffset<ElfClass, Shdr>(elf_header, elf_header->e_shoff);
62 const Shdr* section_names = sections + elf_header->e_shstrndx;
67 const Shdr* section =
H A Dsynth_elf_unittest.cc201 typedef typename TypeParam::Shdr Shdr; typedef
206 2 * sizeof(Shdr) +
236 EXPECT_EQ(sizeof(Shdr), header->e_shentsize);
240 const Shdr* shdr =
241 reinterpret_cast<const Shdr*>(contents.data() + header->e_shoff);
268 typedef typename TypeParam::Shdr Shdr; typedef
274 sizeof(Phdr) + 4 * sizeof(Shdr) + 4096 +
311 EXPECT_EQ(sizeof(Shdr), heade
[all...]
H A Ddump_symbols.cc178 const typename ElfClass::Shdr* stab_section,
179 const typename ElfClass::Shdr* stabstr_section,
231 typedef typename ElfClass::Shdr Shdr; typedef
243 const Shdr* sections =
244 GetOffset<ElfClass, Shdr>(elf_header, elf_header->e_shoff);
246 const Shdr* section_names = sections + elf_header->e_shstrndx;
248 const Shdr* section = &sections[i];
319 const typename ElfClass::Shdr* section,
321 const typename ElfClass::Shdr* got_sectio
594 typedef typename ElfClass::Shdr Shdr; typedef
861 typedef typename ElfClass::Shdr Shdr; typedef
[all...]
/external/llvm/tools/obj2yaml/
H A Delf2yaml.cpp33 std::error_code dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S);
34 std::error_code dumpCommonRelocationSection(const Elf_Shdr *Shdr,
40 ErrorOr<ELFYAML::RelocationSection *> dumpRelSection(const Elf_Shdr *Shdr);
41 ErrorOr<ELFYAML::RelocationSection *> dumpRelaSection(const Elf_Shdr *Shdr);
43 dumpContentSection(const Elf_Shdr *Shdr);
44 ErrorOr<ELFYAML::NoBitsSection *> dumpNoBitsSection(const Elf_Shdr *Shdr);
45 ErrorOr<ELFYAML::Group *> dumpGroup(const Elf_Shdr *Shdr);
46 ErrorOr<ELFYAML::MipsABIFlags *> dumpMipsABIFlags(const Elf_Shdr *Shdr);
190 const Elf_Shdr *Shdr = *ShdrOrErr; local
191 if (!Shdr)
229 dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S) argument
256 dumpCommonRelocationSection(const Elf_Shdr *Shdr, ELFYAML::RelocationSection &S) argument
275 dumpRelSection(const Elf_Shdr *Shdr) argument
299 dumpRelaSection(const Elf_Shdr *Shdr) argument
325 dumpContentSection(const Elf_Shdr *Shdr) argument
342 dumpNoBitsSection(const Elf_Shdr *Shdr) argument
353 dumpGroup(const Elf_Shdr *Shdr) argument
398 dumpMipsABIFlags(const Elf_Shdr *Shdr) argument
[all...]
/external/llvm/include/llvm/Object/
H A DELFTypes.h50 typedef Elf_Shdr_Impl<ELFType<E, Is64>> Shdr; typedef in struct:llvm::object::ELFType
65 typedef ArrayRef<Shdr> ShdrRange;
/external/google-breakpad/src/tools/linux/md2core/
H A Dminidump-2-core.cc64 #define Shdr ElfW(Shdr) macro
1109 ehdr.e_shentsize= sizeof(Shdr);
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp740 for (const auto &Shdr : Obj->sections())
741 if (Shdr.sh_addr == Addr && Shdr.sh_size > 0)
742 return &Shdr;
749 for (const auto &Shdr : Obj.sections()) {
750 if (Name == unwrapOrError(Obj.getSectionName(&Shdr)))
751 return &Shdr;
2247 const Elf_Shdr *Shdr = findSectionByName(*Obj, ".MIPS.abiflags"); local
2248 if (!Shdr) {
2252 ArrayRef<uint8_t> Sec = unwrapOrError(Obj->getSectionContents(Shdr));
2292 const Elf_Shdr *Shdr = findSectionByName(*Obj, ".reginfo"); local
2309 const Elf_Shdr *Shdr = findSectionByName(*Obj, ".MIPS.options"); local
[all...]

Completed in 153 milliseconds