Lines Matching refs:cmdsize

1192       if (dl.dylib.name < dl.cmdsize) {  in PrintDylibs()
8548 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize, in PrintSegmentCommand() argument
8567 outs() << " cmdsize " << cmdsize; in PrintSegmentCommand()
8568 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()
8782 outs() << " cmdsize " << st.cmdsize; in PrintSymtabLoadCommand()
8783 if (st.cmdsize != sizeof(struct MachO::symtab_command)) in PrintSymtabLoadCommand()
8829 outs() << " cmdsize " << dyst.cmdsize; in PrintDysymtabLoadCommand()
8830 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command)) in PrintDysymtabLoadCommand()
8964 outs() << " cmdsize " << dc.cmdsize; in PrintDyldInfoLoadCommand()
8965 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command)) in PrintDyldInfoLoadCommand()
9042 outs() << " cmdsize " << dyld.cmdsize; in PrintDyldLoadCommand()
9043 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand()
9047 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand()
9057 outs() << " cmdsize " << uuid.cmdsize; in PrintUuidLoadCommand()
9058 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
9073 outs() << " cmdsize " << rpath.cmdsize; in PrintRpathLoadCommand()
9074 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand()
9078 if (rpath.path >= rpath.cmdsize) in PrintRpathLoadCommand()
9106 outs() << " cmdsize " << vd.cmdsize; in PrintVersionMinLoadCommand()
9107 if (vd.cmdsize != sizeof(struct MachO::version_min_command)) in PrintVersionMinLoadCommand()
9133 outs() << " cmdsize " << Nt.cmdsize; in PrintNoteLoadCommand()
9134 if (Nt.cmdsize != sizeof(struct MachO::note_command)) in PrintNoteLoadCommand()
9153 outs() << " cmdsize " << bd.cmdsize; in PrintBuildVersionLoadCommand()
9154 if (bd.cmdsize != in PrintBuildVersionLoadCommand()
9178 outs() << " cmdsize " << sd.cmdsize; in PrintSourceVersionCommand()
9179 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
9200 outs() << " cmdsize " << ep.cmdsize; in PrintEntryPointCommand()
9201 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
9212 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand()
9213 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command)) in PrintEncryptionInfoCommand()
9233 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand64()
9234 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64)) in PrintEncryptionInfoCommand64()
9255 outs() << " cmdsize " << lo.cmdsize; in PrintLinkerOptionCommand()
9256 if (lo.cmdsize < sizeof(struct MachO::linker_option_command)) in PrintLinkerOptionCommand()
9262 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
9286 outs() << " cmdsize " << sub.cmdsize; in PrintSubFrameworkCommand()
9287 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command)) in PrintSubFrameworkCommand()
9291 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand()
9302 outs() << " cmdsize " << sub.cmdsize; in PrintSubUmbrellaCommand()
9303 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command)) in PrintSubUmbrellaCommand()
9307 if (sub.sub_umbrella < sub.cmdsize) { in PrintSubUmbrellaCommand()
9318 outs() << " cmdsize " << sub.cmdsize; in PrintSubLibraryCommand()
9319 if (sub.cmdsize < sizeof(struct MachO::sub_library_command)) in PrintSubLibraryCommand()
9323 if (sub.sub_library < sub.cmdsize) { in PrintSubLibraryCommand()
9334 outs() << " cmdsize " << sub.cmdsize; in PrintSubClientCommand()
9335 if (sub.cmdsize < sizeof(struct MachO::sub_client_command)) in PrintSubClientCommand()
9339 if (sub.client < sub.cmdsize) { in PrintSubClientCommand()
9349 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand()
9350 if (r.cmdsize != sizeof(struct MachO::routines_command)) in PrintRoutinesCommand()
9366 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand64()
9367 if (r.cmdsize != sizeof(struct MachO::routines_command_64)) in PrintRoutinesCommand64()
9628 outs() << " cmdsize " << t.cmdsize; in PrintThreadCommand()
9629 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t)) in PrintThreadCommand()
9635 const char *end = Ptr + t.cmdsize; in PrintThreadCommand()
10012 outs() << " cmdsize " << dl.cmdsize; in PrintDylibCommand()
10013 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand()
10017 if (dl.dylib.name < dl.cmdsize) { in PrintDylibCommand()
10058 outs() << " cmdsize " << ld.cmdsize; in PrintLinkEditDataCommand()
10059 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command)) in PrintLinkEditDataCommand()
10086 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
10099 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname, in PrintLoadCommands()
10206 outs() << " cmdsize " << Command.C.cmdsize << "\n"; in PrintLoadCommands()