Lines Matching refs:Load
706 for (const auto &Load : Obj->load_commands()) { in printMachODataInCode() local
707 if (Load.C.cmd == MachO::LC_DATA_IN_CODE) { in printMachODataInCode()
708 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load); in printMachODataInCode()
728 for (const auto &Load : Obj->load_commands()) { in printMachOVersionMin() local
730 switch (Load.C.cmd) { in printMachOVersionMin()
752 if (Load.C.cmd == MachO::LC_BUILD_VERSION) { in printMachOVersionMin()
753 MachO::build_version_command BVC = Obj->getBuildVersionLoadCommand(Load); in printMachOVersionMin()
766 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load); in printMachOVersionMin()
791 for (const auto &Load : Obj->load_commands()) { in printMachODysymtab() local
792 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachODysymtab()
818 for (const auto &Load : Obj->load_commands()) { in printMachOSegment() local
819 if (Load.C.cmd == MachO::LC_SEGMENT || Load.C.cmd == MachO::LC_SEGMENT_64) { in printMachOSegment()
821 getSegment(Obj, Load, MOSegment); in printMachOSegment()
839 for (const auto &Load : Obj->load_commands()) { in printMachOIndirectSymbols() local
840 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachOIndirectSymbols()
855 for (const auto &Load : Obj->load_commands()) { in printMachOLinkerOptions() local
856 if (Load.C.cmd == MachO::LC_LINKER_OPTION) { in printMachOLinkerOptions()
857 MachO::linker_option_command LOLC = Obj->getLinkerOptionLoadCommand(Load); in printMachOLinkerOptions()
862 const char *P = Load.Ptr + sizeof(MachO::linker_option_command); in printMachOLinkerOptions()