Lines Matching refs:cmdsize
1417 if (dl.dylib.name < dl.cmdsize) { in PrintDylibs()
8425 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize, in PrintSegmentCommand() argument
8444 outs() << " cmdsize " << cmdsize; in PrintSegmentCommand()
8445 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()
8667 outs() << " cmdsize " << st.cmdsize; in PrintSymtabLoadCommand()
8668 if (st.cmdsize != sizeof(struct MachO::symtab_command)) in PrintSymtabLoadCommand()
8714 outs() << " cmdsize " << dyst.cmdsize; in PrintDysymtabLoadCommand()
8715 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command)) in PrintDysymtabLoadCommand()
8849 outs() << " cmdsize " << dc.cmdsize; in PrintDyldInfoLoadCommand()
8850 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command)) in PrintDyldInfoLoadCommand()
8927 outs() << " cmdsize " << dyld.cmdsize; in PrintDyldLoadCommand()
8928 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand()
8932 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand()
8942 outs() << " cmdsize " << uuid.cmdsize; in PrintUuidLoadCommand()
8943 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
8958 outs() << " cmdsize " << rpath.cmdsize; in PrintRpathLoadCommand()
8959 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand()
8963 if (rpath.path >= rpath.cmdsize) in PrintRpathLoadCommand()
8991 outs() << " cmdsize " << vd.cmdsize; in PrintVersionMinLoadCommand()
8992 if (vd.cmdsize != sizeof(struct MachO::version_min_command)) in PrintVersionMinLoadCommand()
9018 outs() << " cmdsize " << Nt.cmdsize; in PrintNoteLoadCommand()
9019 if (Nt.cmdsize != sizeof(struct MachO::note_command)) in PrintNoteLoadCommand()
9044 outs() << " cmdsize " << bd.cmdsize; in PrintBuildVersionLoadCommand()
9045 if (bd.cmdsize != in PrintBuildVersionLoadCommand()
9073 outs() << " cmdsize " << sd.cmdsize; in PrintSourceVersionCommand()
9074 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
9095 outs() << " cmdsize " << ep.cmdsize; in PrintEntryPointCommand()
9096 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
9107 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand()
9108 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command)) in PrintEncryptionInfoCommand()
9128 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand64()
9129 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64)) in PrintEncryptionInfoCommand64()
9150 outs() << " cmdsize " << lo.cmdsize; in PrintLinkerOptionCommand()
9151 if (lo.cmdsize < sizeof(struct MachO::linker_option_command)) in PrintLinkerOptionCommand()
9157 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
9181 outs() << " cmdsize " << sub.cmdsize; in PrintSubFrameworkCommand()
9182 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command)) in PrintSubFrameworkCommand()
9186 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand()
9197 outs() << " cmdsize " << sub.cmdsize; in PrintSubUmbrellaCommand()
9198 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command)) in PrintSubUmbrellaCommand()
9202 if (sub.sub_umbrella < sub.cmdsize) { in PrintSubUmbrellaCommand()
9213 outs() << " cmdsize " << sub.cmdsize; in PrintSubLibraryCommand()
9214 if (sub.cmdsize < sizeof(struct MachO::sub_library_command)) in PrintSubLibraryCommand()
9218 if (sub.sub_library < sub.cmdsize) { in PrintSubLibraryCommand()
9229 outs() << " cmdsize " << sub.cmdsize; in PrintSubClientCommand()
9230 if (sub.cmdsize < sizeof(struct MachO::sub_client_command)) in PrintSubClientCommand()
9234 if (sub.client < sub.cmdsize) { in PrintSubClientCommand()
9244 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand()
9245 if (r.cmdsize != sizeof(struct MachO::routines_command)) in PrintRoutinesCommand()
9261 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand64()
9262 if (r.cmdsize != sizeof(struct MachO::routines_command_64)) in PrintRoutinesCommand64()
9523 outs() << " cmdsize " << t.cmdsize; in PrintThreadCommand()
9524 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t)) in PrintThreadCommand()
9530 const char *end = Ptr + t.cmdsize; in PrintThreadCommand()
9907 outs() << " cmdsize " << dl.cmdsize; in PrintDylibCommand()
9908 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand()
9912 if (dl.dylib.name < dl.cmdsize) { in PrintDylibCommand()
9959 outs() << " cmdsize " << ld.cmdsize; in PrintLinkEditDataCommand()
9960 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command)) in PrintLinkEditDataCommand()
9987 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
10000 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname, in PrintLoadCommands()
10110 outs() << " cmdsize " << Command.C.cmdsize << "\n"; in PrintLoadCommands()