• Home
  • Raw
  • Download

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()
197 return Res; 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()
392 int Res = 0; in DumpLoadCommand() local
399 Res = DumpSegmentCommand(Obj, LCI); in DumpLoadCommand()
402 Res = DumpSegment64Command(Obj, LCI); in DumpLoadCommand()
405 Res = DumpSymtabCommand(Obj, LCI); in DumpLoadCommand()
408 Res = DumpDysymtabCommand(Obj, LCI); in DumpLoadCommand()
413 Res = DumpLinkeditDataCommand(Obj, LCI); in DumpLoadCommand()
416 Res = DumpDataInCodeDataCommand(Obj, LCI); in DumpLoadCommand()
419 Res = DumpLinkerOptionsCommand(Obj, LCI); in DumpLoadCommand()
427 return Res; in DumpLoadCommand()
452 int Res = 0; in main() local
455 if ((Res = DumpLoadCommand(*InputObject, i))) in main()
459 return Res; in main()