• Home
  • Raw
  • Download

Lines Matching refs:MachO

102     MachO::any_relocation_info RE = Obj.getRelocation(I->getRawDataRefImpl());  in DumpSectionData()
127 MachO::segment_command SLC = Obj.getSegmentLoadCommand(LCI); in DumpSegmentCommand()
136 MachO::section Sect = Obj.getSection(LCI, i); in DumpSegmentCommand()
150 MachO::segment_command_64 SLC = Obj.getSegment64LoadCommand(LCI); in DumpSegment64Command()
158 MachO::section_64 Sect = Obj.getSection64(LCI, i); in DumpSegment64Command()
189 MachO::symtab_command SLC = Obj.getSymtabLoadCommand(); in DumpSymtabCommand()
208 MachO::nlist_64 STE = Obj.getSymbol64TableEntry(DRI); in DumpSymtabCommand()
213 MachO::nlist STE = Obj.getSymbolTableEntry(DRI); in DumpSymtabCommand()
226 MachO::dysymtab_command DLC = Obj.getDysymtabLoadCommand(); in DumpDysymtabCommand()
262 MachO::linkedit_data_command LLC = Obj.getLinkeditDataLoadCommand(LCI); in DumpLinkeditDataCommand()
281 MachO::linkedit_data_command LLC = Obj.getLinkeditDataLoadCommand(LCI); in DumpDataInCodeDataCommand()
286 unsigned NumRegions = LLC.datasize / sizeof(MachO::data_in_code_entry); in DumpDataInCodeDataCommand()
288 MachO::data_in_code_entry DICE= Obj.getDataInCodeTableEntry(LLC.dataoff, i); in DumpDataInCodeDataCommand()
303 MachO::linker_option_command LOLC = Obj.getLinkerOptionLoadCommand(LCI); in DumpLinkerOptionsCommand()
307 uint64_t DataSize = LOLC.cmdsize - sizeof(MachO::linker_option_command); in DumpLinkerOptionsCommand()
308 const char *P = LCI.Ptr + sizeof(MachO::linker_option_command); in DumpLinkerOptionsCommand()
325 MachO::version_min_command VMLC = Obj.getVersionMinLoadCommand(LCI); in DumpVersionMin()
334 MachO::dylib_command DLLC = Obj.getDylibIDLoadCommand(LCI); in DumpDylibID()
345 case MachO::LC_SEGMENT: in DumpLoadCommand()
347 case MachO::LC_SEGMENT_64: in DumpLoadCommand()
349 case MachO::LC_SYMTAB: in DumpLoadCommand()
351 case MachO::LC_DYSYMTAB: in DumpLoadCommand()
353 case MachO::LC_CODE_SIGNATURE: in DumpLoadCommand()
354 case MachO::LC_SEGMENT_SPLIT_INFO: in DumpLoadCommand()
355 case MachO::LC_FUNCTION_STARTS: in DumpLoadCommand()
357 case MachO::LC_DATA_IN_CODE: in DumpLoadCommand()
359 case MachO::LC_LINKER_OPTION: in DumpLoadCommand()
361 case MachO::LC_VERSION_MIN_IPHONEOS: in DumpLoadCommand()
362 case MachO::LC_VERSION_MIN_MACOSX: in DumpLoadCommand()
364 case MachO::LC_ID_DYLIB: in DumpLoadCommand()
384 const MachO::mach_header &Header) { in printHeader()
394 const MachO::mach_header_64 *Header64 = in printHeader()
395 reinterpret_cast<const MachO::mach_header_64 *>(&Header); in printHeader()
416 MachO::mach_header_64 Header64; in main()
417 MachO::mach_header *Header = reinterpret_cast<MachO::mach_header*>(&Header64); in main()