Lines Matching full:cmdsize

574       if (dl.dylib.name < dl.cmdsize) {  in PrintDylibs()
7670 static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize, in PrintSegmentCommand() argument
7689 outs() << " cmdsize " << cmdsize; in PrintSegmentCommand()
7690 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()
7904 outs() << " cmdsize " << st.cmdsize; in PrintSymtabLoadCommand()
7905 if (st.cmdsize != sizeof(struct MachO::symtab_command)) in PrintSymtabLoadCommand()
7951 outs() << " cmdsize " << dyst.cmdsize; in PrintDysymtabLoadCommand()
7952 if (dyst.cmdsize != sizeof(struct MachO::dysymtab_command)) in PrintDysymtabLoadCommand()
8086 outs() << " cmdsize " << dc.cmdsize; in PrintDyldInfoLoadCommand()
8087 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command)) in PrintDyldInfoLoadCommand()
8164 outs() << " cmdsize " << dyld.cmdsize; in PrintDyldLoadCommand()
8165 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand()
8169 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand()
8179 outs() << " cmdsize " << uuid.cmdsize; in PrintUuidLoadCommand()
8180 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
8195 outs() << " cmdsize " << rpath.cmdsize; in PrintRpathLoadCommand()
8196 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand()
8200 if (rpath.path >= rpath.cmdsize) in PrintRpathLoadCommand()
8228 outs() << " cmdsize " << vd.cmdsize; in PrintVersionMinLoadCommand()
8229 if (vd.cmdsize != sizeof(struct MachO::version_min_command)) in PrintVersionMinLoadCommand()
8255 outs() << " cmdsize " << sd.cmdsize; in PrintSourceVersionCommand()
8256 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
8277 outs() << " cmdsize " << ep.cmdsize; in PrintEntryPointCommand()
8278 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
8289 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand()
8290 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command)) in PrintEncryptionInfoCommand()
8310 outs() << " cmdsize " << ec.cmdsize; in PrintEncryptionInfoCommand64()
8311 if (ec.cmdsize != sizeof(struct MachO::encryption_info_command_64)) in PrintEncryptionInfoCommand64()
8332 outs() << " cmdsize " << lo.cmdsize; in PrintLinkerOptionCommand()
8333 if (lo.cmdsize < sizeof(struct MachO::linker_option_command)) in PrintLinkerOptionCommand()
8339 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
8363 outs() << " cmdsize " << sub.cmdsize; in PrintSubFrameworkCommand()
8364 if (sub.cmdsize < sizeof(struct MachO::sub_framework_command)) in PrintSubFrameworkCommand()
8368 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand()
8379 outs() << " cmdsize " << sub.cmdsize; in PrintSubUmbrellaCommand()
8380 if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command)) in PrintSubUmbrellaCommand()
8384 if (sub.sub_umbrella < sub.cmdsize) { in PrintSubUmbrellaCommand()
8395 outs() << " cmdsize " << sub.cmdsize; in PrintSubLibraryCommand()
8396 if (sub.cmdsize < sizeof(struct MachO::sub_library_command)) in PrintSubLibraryCommand()
8400 if (sub.sub_library < sub.cmdsize) { in PrintSubLibraryCommand()
8411 outs() << " cmdsize " << sub.cmdsize; in PrintSubClientCommand()
8412 if (sub.cmdsize < sizeof(struct MachO::sub_client_command)) in PrintSubClientCommand()
8416 if (sub.client < sub.cmdsize) { in PrintSubClientCommand()
8426 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand()
8427 if (r.cmdsize != sizeof(struct MachO::routines_command)) in PrintRoutinesCommand()
8443 outs() << " cmdsize " << r.cmdsize; in PrintRoutinesCommand64()
8444 if (r.cmdsize != sizeof(struct MachO::routines_command_64)) in PrintRoutinesCommand64()
8629 outs() << " cmdsize " << t.cmdsize; in PrintThreadCommand()
8630 if (t.cmdsize < sizeof(struct MachO::thread_command) + 2 * sizeof(uint32_t)) in PrintThreadCommand()
8636 const char *end = Ptr + t.cmdsize; in PrintThreadCommand()
8820 outs() << " cmdsize " << dl.cmdsize; in PrintDylibCommand()
8821 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand()
8825 if (dl.dylib.name < dl.cmdsize) { in PrintDylibCommand()
8866 outs() << " cmdsize " << ld.cmdsize; in PrintLinkEditDataCommand()
8867 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command)) in PrintLinkEditDataCommand()
8894 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
8907 PrintSegmentCommand(SLC_64.cmd, SLC_64.cmdsize, SLC_64.segname, in PrintLoadCommands()
9007 outs() << " cmdsize " << Command.C.cmdsize << "\n"; in PrintLoadCommands()