Lines Matching refs:Load

728   for (const auto &Load : Obj->load_commands()) {  in printMachODataInCode()  local
729 if (Load.C.cmd == MachO::LC_DATA_IN_CODE) { in printMachODataInCode()
730 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load); in printMachODataInCode()
750 for (const auto &Load : Obj->load_commands()) { in printMachOVersionMin() local
752 switch (Load.C.cmd) { in printMachOVersionMin()
774 if (Load.C.cmd == MachO::LC_BUILD_VERSION) { in printMachOVersionMin()
775 MachO::build_version_command BVC = Obj->getBuildVersionLoadCommand(Load); in printMachOVersionMin()
788 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load); in printMachOVersionMin()
813 for (const auto &Load : Obj->load_commands()) { in printMachODysymtab() local
814 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachODysymtab()
840 for (const auto &Load : Obj->load_commands()) { in printMachOSegment() local
841 if (Load.C.cmd == MachO::LC_SEGMENT || Load.C.cmd == MachO::LC_SEGMENT_64) { in printMachOSegment()
843 getSegment(Obj, Load, MOSegment); in printMachOSegment()
861 for (const auto &Load : Obj->load_commands()) { in printMachOIndirectSymbols() local
862 if (Load.C.cmd == MachO::LC_DYSYMTAB) { in printMachOIndirectSymbols()
877 for (const auto &Load : Obj->load_commands()) { in printMachOLinkerOptions() local
878 if (Load.C.cmd == MachO::LC_LINKER_OPTION) { in printMachOLinkerOptions()
879 MachO::linker_option_command LOLC = Obj->getLinkerOptionLoadCommand(Load); in printMachOLinkerOptions()
884 const char *P = Load.Ptr + sizeof(MachO::linker_option_command); in printMachOLinkerOptions()