Lines Matching refs:error_code

31   std::error_code dumpSymbol(const Elf_Sym *Sym, const Elf_Shdr *SymTab,
33 std::error_code dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S);
34 std::error_code dumpCommonRelocationSection(const Elf_Shdr *Shdr,
37 std::error_code dumpRelocation(const RelT *Rel, const Elf_Shdr *SymTab,
87 if (std::error_code EC = TableOrErr.getError()) in dump()
94 if (std::error_code EC = S.getError()) in dump()
101 if (std::error_code EC = S.getError()) in dump()
108 if (std::error_code EC = G.getError()) in dump()
115 if (std::error_code EC = G.getError()) in dump()
122 if (std::error_code EC = S.getError()) in dump()
129 if (std::error_code EC = S.getError()) in dump()
138 if (std::error_code EC = StrTableOrErr.getError()) in dump()
150 if (std::error_code EC = in dump()
174 std::error_code
188 if (std::error_code EC = ShdrOrErr.getError()) in dumpSymbol()
195 if (std::error_code EC = NameOrErr.getError()) in dumpSymbol()
204 std::error_code ELFDumper<ELFT>::dumpRelocation(const RelT *Rel, in dumpRelocation()
213 if (std::error_code EC = StrTabSec.getError()) in dumpRelocation()
216 if (std::error_code EC = StrTabOrErr.getError()) in dumpRelocation()
229 std::error_code ELFDumper<ELFT>::dumpCommonSection(const Elf_Shdr *Shdr, in dumpCommonSection()
237 if (std::error_code EC = NameOrErr.getError()) in dumpCommonSection()
243 if (std::error_code EC = LinkSection.getError()) in dumpCommonSection()
246 if (std::error_code EC = NameOrErr.getError()) in dumpCommonSection()
255 std::error_code
258 if (std::error_code EC = dumpCommonSection(Shdr, S)) in dumpCommonRelocationSection()
262 if (std::error_code EC = InfoSection.getError()) in dumpCommonRelocationSection()
266 if (std::error_code EC = NameOrErr.getError()) in dumpCommonRelocationSection()
279 if (std::error_code EC = dumpCommonRelocationSection(Shdr, *S)) in dumpRelSection()
283 if (std::error_code EC = SymTabOrErr.getError()) in dumpRelSection()
289 if (std::error_code EC = dumpRelocation(&*RI, SymTab, R)) in dumpRelSection()
303 if (std::error_code EC = dumpCommonRelocationSection(Shdr, *S)) in dumpRelaSection()
307 if (std::error_code EC = SymTabOrErr.getError()) in dumpRelaSection()
314 if (std::error_code EC = dumpRelocation(&*RI, SymTab, R)) in dumpRelaSection()
328 if (std::error_code EC = dumpCommonSection(Shdr, *S)) in dumpContentSection()
332 if (std::error_code EC = ContentOrErr.getError()) in dumpContentSection()
345 if (std::error_code EC = dumpCommonSection(Shdr, *S)) in dumpNoBitsSection()
356 if (std::error_code EC = dumpCommonSection(Shdr, *S)) in dumpGroup()
360 if (std::error_code EC = SymtabOrErr.getError()) in dumpGroup()
365 if (std::error_code EC = StrTabOrErr.getError()) in dumpGroup()
369 if (std::error_code ec = sectionContents.getError()) in dumpGroup()
384 if (std::error_code EC = sHdr.getError()) in dumpGroup()
387 if (std::error_code ec = sectionName.getError()) in dumpGroup()
402 if (std::error_code EC = dumpCommonSection(Shdr, *S)) in dumpMipsABIFlags()
406 if (std::error_code EC = ContentOrErr.getError()) in dumpMipsABIFlags()
426 static std::error_code elf2yaml(raw_ostream &Out, in elf2yaml()
430 if (std::error_code EC = YAMLOrErr.getError()) in elf2yaml()
437 return std::error_code(); in elf2yaml()
440 std::error_code elf2yaml(raw_ostream &Out, const object::ObjectFile &Obj) { in elf2yaml()