Lines Matching refs:error_code
29 std::error_code dumpSymbol(Elf_Sym_Iter Sym, ELFYAML::Symbol &S);
30 std::error_code dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S);
31 std::error_code dumpCommonRelocationSection(const Elf_Shdr *Shdr,
34 std::error_code dumpRelocation(const Elf_Shdr *Shdr, const RelT *Rel,
77 if (std::error_code EC = S.getError())
84 if (std::error_code EC = S.getError())
92 if (std::error_code EC = S.getError())
108 if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, S))
131 std::error_code ELFDumper<ELFT>::dumpSymbol(Elf_Sym_Iter Sym,
139 if (std::error_code EC = NameOrErr.getError())
148 if (std::error_code EC = NameOrErr.getError())
157 std::error_code ELFDumper<ELFT>::dumpRelocation(const Elf_Shdr *Shdr,
170 if (std::error_code EC = NameOrErr.getError())
178 std::error_code ELFDumper<ELFT>::dumpCommonSection(const Elf_Shdr *Shdr,
186 if (std::error_code EC = NameOrErr.getError())
193 if (std::error_code EC = NameOrErr.getError())
203 std::error_code
206 if (std::error_code EC = dumpCommonSection(Shdr, S))
211 if (std::error_code EC = NameOrErr.getError())
225 if (std::error_code EC = dumpCommonRelocationSection(Shdr, *S))
231 if (std::error_code EC = dumpRelocation(Shdr, &*RI, R))
245 if (std::error_code EC = dumpCommonRelocationSection(Shdr, *S))
251 if (std::error_code EC = dumpRelocation(Shdr, &*RI, R))
265 if (std::error_code EC = dumpCommonSection(Shdr, *S))
269 if (std::error_code EC = ContentOrErr.getError())
278 static std::error_code elf2yaml(raw_ostream &Out,
282 if (std::error_code EC = YAMLOrErr.getError())
292 std::error_code elf2yaml(raw_ostream &Out, const object::ObjectFile &Obj) {