Lines Matching refs:Load
814 for (const auto &Load : Obj->load_commands()) { in printMachODataInCode() local
815 if (Load.C.cmd == MachO::LC_DATA_IN_CODE) { in printMachODataInCode()
816 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load); in printMachODataInCode()
836 for (const auto &Load : Obj->load_commands()) { in printMachOVersionMin() local
838 switch (Load.C.cmd) { in printMachOVersionMin()
860 if (Load.C.cmd == MachO::LC_BUILD_VERSION) { in printMachOVersionMin()
861 MachO::build_version_command BVC = Obj->getBuildVersionLoadCommand(Load); in printMachOVersionMin()
874 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load); in printMachOVersionMin()
899 for (const auto &Load : Obj->load_commands()) { in printMachODysymtab() local
900 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachODysymtab()
926 for (const auto &Load : Obj->load_commands()) { in printMachOSegment() local
927 if (Load.C.cmd == MachO::LC_SEGMENT || Load.C.cmd == MachO::LC_SEGMENT_64) { in printMachOSegment()
929 getSegment(Obj, Load, MOSegment); in printMachOSegment()
947 for (const auto &Load : Obj->load_commands()) { in printMachOIndirectSymbols() local
948 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachOIndirectSymbols()
963 for (const auto &Load : Obj->load_commands()) { in printMachOLinkerOptions() local
964 if (Load.C.cmd == MachO::LC_LINKER_OPTION) { in printMachOLinkerOptions()
965 MachO::linker_option_command LOLC = Obj->getLinkerOptionLoadCommand(Load); in printMachOLinkerOptions()
970 const char *P = Load.Ptr + sizeof(MachO::linker_option_command); in printMachOLinkerOptions()