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