Lines Matching refs:ELFDumper
23 class ELFDumper { class
46 ELFDumper(const object::ELFFile<ELFT> &O);
53 ELFDumper<ELFT>::ELFDumper(const object::ELFFile<ELFT> &O) in ELFDumper() function in ELFDumper
57 ErrorOr<ELFYAML::Object *> ELFDumper<ELFT>::dump() { in dump()
117 if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, S)) in dump()
140 std::error_code ELFDumper<ELFT>::dumpSymbol(Elf_Sym_Iter Sym, in dumpSymbol()
166 std::error_code ELFDumper<ELFT>::dumpRelocation(const Elf_Shdr *Shdr, in dumpRelocation()
187 std::error_code ELFDumper<ELFT>::dumpCommonSection(const Elf_Shdr *Shdr, in dumpCommonSection()
213 ELFDumper<ELFT>::dumpCommonRelocationSection(const Elf_Shdr *Shdr, in dumpCommonRelocationSection()
230 ELFDumper<ELFT>::dumpRelSection(const Elf_Shdr *Shdr) { in dumpRelSection()
250 ELFDumper<ELFT>::dumpRelaSection(const Elf_Shdr *Shdr) { in dumpRelaSection()
271 ELFDumper<ELFT>::dumpContentSection(const Elf_Shdr *Shdr) { in dumpContentSection()
287 ErrorOr<ELFYAML::Group *> ELFDumper<ELFT>::dumpGroup(const Elf_Shdr *Shdr) { in dumpGroup()
324 ELFDumper<ELFT> Dumper(Obj); in elf2yaml()