Home
last modified time | relevance | path

Searched refs:findCommand (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lld/MachO/
H A DObjC.cpp32 findCommand<typename LP::segment_command>(hdr, LP::segmentLCType)) { in objectHasObjCSection()
H A DInputFiles.cpp1091 if (const load_command *cmd = findCommand(hdr, LP::segmentLCType)) { in parse()
1099 if (const load_command *cmd = findCommand(hdr, LC_SYMTAB)) { in parse()
1115 if (auto *cmd = findCommand<linkedit_data_command>( in parse()
1143 const load_command *cmd = findCommand(hdr, LC_SYMTAB); in parseLazy()
1190 const load_command *cmd = findCommand(buf, LC_DATA_IN_CODE); in getDataInCode()
1762 if (const load_command *cmd = findCommand(hdr, LC_ID_DYLIB)) { in DylibFile()
1794 const auto *dyldInfo = findCommand<dyld_info_command>(hdr, LC_DYLD_INFO_ONLY); in DylibFile()
1796 findCommand<linkedit_data_command>(hdr, LC_DYLD_EXPORTS_TRIE); in DylibFile()
H A DInputFiles.h345 const CommandType *findCommand(const void *anyHdr, Types... types) { in findCommand() function