Lines Matching refs:cmdsize
903 if (dl.dylib.name < dl.cmdsize) { in PrintDylibs()
8115 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize, in PrintSegmentCommand() argument
8134 outs() << " cmdsize " << cmdsize; in PrintSegmentCommand()
8135 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()
8349 outs() << " cmdsize " << st.cmdsize; in PrintSymtabLoadCommand()
8350 if (st.cmdsize != sizeof(struct MachO::symtab_command)) in PrintSymtabLoadCommand()
8396 outs() << " cmdsize " << dyst.cmdsize; in PrintDysymtabLoadCommand()
8397 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command)) in PrintDysymtabLoadCommand()
8531 outs() << " cmdsize " << dc.cmdsize; in PrintDyldInfoLoadCommand()
8532 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command)) in PrintDyldInfoLoadCommand()
8609 outs() << " cmdsize " << dyld.cmdsize; in PrintDyldLoadCommand()
8610 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand()
8614 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand()
8624 outs() << " cmdsize " << uuid.cmdsize; in PrintUuidLoadCommand()
8625 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
8640 outs() << " cmdsize " << rpath.cmdsize; in PrintRpathLoadCommand()
8641 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand()
8645 if (rpath.path >= rpath.cmdsize) in PrintRpathLoadCommand()
8673 outs() << " cmdsize " << vd.cmdsize; in PrintVersionMinLoadCommand()
8674 if (vd.cmdsize != sizeof(struct MachO::version_min_command)) in PrintVersionMinLoadCommand()
8700 outs() << " cmdsize " << Nt.cmdsize; in PrintNoteLoadCommand()
8701 if (Nt.cmdsize != sizeof(struct MachO::note_command)) in PrintNoteLoadCommand()
8720 outs() << " cmdsize " << bd.cmdsize; in PrintBuildVersionLoadCommand()
8721 if (bd.cmdsize != in PrintBuildVersionLoadCommand()
8745 outs() << " cmdsize " << sd.cmdsize; in PrintSourceVersionCommand()
8746 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
8767 outs() << " cmdsize " << ep.cmdsize; in PrintEntryPointCommand()
8768 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
8779 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand()
8780 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command)) in PrintEncryptionInfoCommand()
8800 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand64()
8801 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64)) in PrintEncryptionInfoCommand64()
8822 outs() << " cmdsize " << lo.cmdsize; in PrintLinkerOptionCommand()
8823 if (lo.cmdsize < sizeof(struct MachO::linker_option_command)) in PrintLinkerOptionCommand()
8829 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
8853 outs() << " cmdsize " << sub.cmdsize; in PrintSubFrameworkCommand()
8854 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command)) in PrintSubFrameworkCommand()
8858 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand()
8869 outs() << " cmdsize " << sub.cmdsize; in PrintSubUmbrellaCommand()
8870 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command)) in PrintSubUmbrellaCommand()
8874 if (sub.sub_umbrella < sub.cmdsize) { in PrintSubUmbrellaCommand()
8885 outs() << " cmdsize " << sub.cmdsize; in PrintSubLibraryCommand()
8886 if (sub.cmdsize < sizeof(struct MachO::sub_library_command)) in PrintSubLibraryCommand()
8890 if (sub.sub_library < sub.cmdsize) { in PrintSubLibraryCommand()
8901 outs() << " cmdsize " << sub.cmdsize; in PrintSubClientCommand()
8902 if (sub.cmdsize < sizeof(struct MachO::sub_client_command)) in PrintSubClientCommand()
8906 if (sub.client < sub.cmdsize) { in PrintSubClientCommand()
8916 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand()
8917 if (r.cmdsize != sizeof(struct MachO::routines_command)) in PrintRoutinesCommand()
8933 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand64()
8934 if (r.cmdsize != sizeof(struct MachO::routines_command_64)) in PrintRoutinesCommand64()
9195 outs() << " cmdsize " << t.cmdsize; in PrintThreadCommand()
9196 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t)) in PrintThreadCommand()
9202 const char *end = Ptr + t.cmdsize; in PrintThreadCommand()
9578 outs() << " cmdsize " << dl.cmdsize; in PrintDylibCommand()
9579 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand()
9583 if (dl.dylib.name < dl.cmdsize) { in PrintDylibCommand()
9624 outs() << " cmdsize " << ld.cmdsize; in PrintLinkEditDataCommand()
9625 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command)) in PrintLinkEditDataCommand()
9652 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
9665 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname, in PrintLoadCommands()
9772 outs() << " cmdsize " << Command.C.cmdsize << "\n"; in PrintLoadCommands()