Lines Matching refs:LoadCmd
603 const char **LoadCmd, const char *CmdName, in checkLinkeditDataCommand() argument
609 if (*LoadCmd != nullptr) in checkLinkeditDataCommand()
634 *LoadCmd = Load.Ptr; in checkLinkeditDataCommand()
641 const char **LoadCmd, const char *CmdName, in checkDyldInfoCommand() argument
646 if (*LoadCmd != nullptr) in checkDyldInfoCommand()
733 *LoadCmd = Load.Ptr; in checkDyldInfoCommand()
772 const char **LoadCmd) { in checkDylibIdCommand() argument
776 if (*LoadCmd != nullptr) in checkDylibIdCommand()
782 *LoadCmd = Load.Ptr; in checkDylibIdCommand()
821 const char **LoadCmd, const char *CmdName) { in checkVersCommand() argument
825 if (*LoadCmd != nullptr) in checkVersCommand()
829 *LoadCmd = Load.Ptr; in checkVersCommand()
921 const char **LoadCmd, const char *CmdName) { in checkEncryptCommand() argument
922 if (*LoadCmd != nullptr) in checkEncryptCommand()
937 *LoadCmd = Load.Ptr; in checkEncryptCommand()
1203 const char **LoadCmd, in checkTwoLevelHintsCommand() argument
1208 if (*LoadCmd != nullptr) in checkTwoLevelHintsCommand()
1231 *LoadCmd = Load.Ptr; in checkTwoLevelHintsCommand()
2078 MachOObjectFile::LoadCommandInfo LoadCmd, in getSegmentContents() argument
2080 auto SegmentOrErr = getStructOrErr<LoadCommandType>(Obj, LoadCmd.Ptr); in getSegmentContents()
2094 MachOObjectFile::LoadCommandInfo LoadCmd) { in getSegmentContents() argument
2095 auto SegmentOrErr = getStructOrErr<LoadCommandType>(Obj, LoadCmd.Ptr); in getSegmentContents()
2108 for (auto LoadCmd : load_commands()) { in getSegmentContents() local
2110 switch (LoadCmd.C.cmd) { in getSegmentContents()
2112 Contents = ::getSegmentContents<MachO::segment_command>(*this, LoadCmd, in getSegmentContents()
2116 Contents = ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd, in getSegmentContents()
2131 for (auto LoadCmd : load_commands()) { in getSegmentContents() local
2132 switch (LoadCmd.C.cmd) { in getSegmentContents()
2135 return ::getSegmentContents<MachO::segment_command>(*this, LoadCmd); in getSegmentContents()
2140 return ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd); in getSegmentContents()