Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/MachO/
H A DObjC.cpp33 findCommand<typename LP::segment_command>(hdr, LP::segmentLCType)) { in objectHasObjCSection()
H A DInputFiles.cpp997 if (const load_command *cmd = findCommand(hdr, LP::segmentLCType)) { in parse()
1005 if (const load_command *cmd = findCommand(hdr, LC_SYMTAB)) { in parse()
1044 const load_command *cmd = findCommand(hdr, LC_SYMTAB); in parseLazy()
1090 const load_command *cmd = findCommand(buf, LC_DATA_IN_CODE); in getDataInCode()
1101 findCommand<linkedit_data_command>(buf, LC_LINKER_OPTIMIZATION_HINT)) in getOptimizationHints()
1674 if (const load_command *cmd = findCommand(hdr, LC_ID_DYLIB)) { in DylibFile()
1706 const auto *dyldInfo = findCommand<dyld_info_command>(hdr, LC_DYLD_INFO_ONLY); in DylibFile()
1708 findCommand<linkedit_data_command>(hdr, LC_DYLD_EXPORTS_TRIE); in DylibFile()
H A DInputFiles.h348 const CommandType *findCommand(const void *anyHdr, Types... types) { in findCommand() function