Lines Matching refs:Res

95   int Res = 0;  in DumpSectionData()  local
101 Res = Error("unable to read relocation table entry '" + Twine(i) + "'"); in DumpSectionData()
124 return Res; in DumpSectionData()
140 int Res = 0; in DumpSegmentCommand() local
146 Res = Error("unable to read section '" + Twine(i) + "'"); in DumpSegmentCommand()
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegmentCommand()
160 return Res; in DumpSegmentCommand()
176 int Res = 0; in DumpSegment64Command() local
182 Res = Error("unable to read section '" + Twine(i) + "'"); in DumpSegment64Command()
186 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegment64Command()
235 int Res = 0; in DumpSymtabCommand() local
242 Res = Error("unable to read symbol: '" + Twine(i) + "'"); in DumpSymtabCommand()
252 Res = Error("unable to read symbol: '" + Twine(i) + "'"); in DumpSymtabCommand()
262 return Res; in DumpSymtabCommand()
294 int Res = 0; in DumpDysymtabCommand() local
300 Res = Error("unable to read segment load command"); in DumpDysymtabCommand()
310 return Res; in DumpDysymtabCommand()
338 int Res = 0; in DumpLoadCommand() local
345 Res = DumpSegmentCommand(Obj, LCI); in DumpLoadCommand()
348 Res = DumpSegment64Command(Obj, LCI); in DumpLoadCommand()
351 Res = DumpSymtabCommand(Obj, LCI); in DumpLoadCommand()
354 Res = DumpDysymtabCommand(Obj, LCI); in DumpLoadCommand()
359 Res = DumpLinkeditDataCommand(Obj, LCI); in DumpLoadCommand()
367 return Res; in DumpLoadCommand()
392 int Res = 0; in main() local
395 if ((Res = DumpLoadCommand(*InputObject, i))) in main()
399 return Res; in main()