Lines Matching refs:make

735     in.header->addLoadCommand(make<LCSegment<LP>>(seg->name, seg));  in createLoadCommands()
739 in.header->addLoadCommand(make<LCDyldInfo>( in createLoadCommands()
741 in.header->addLoadCommand(make<LCSymtab>(symtabSection, stringTableSection)); in createLoadCommands()
743 make<LCDysymtab>(symtabSection, indirectSymtabSection)); in createLoadCommands()
745 in.header->addLoadCommand(make<LCSubFramework>(config->umbrella)); in createLoadCommands()
747 in.header->addLoadCommand(make<LCEncryptionInfo<LP>>()); in createLoadCommands()
749 in.header->addLoadCommand(make<LCRPath>(path)); in createLoadCommands()
753 in.header->addLoadCommand(make<LCLoadDylinker>()); in createLoadCommands()
756 in.header->addLoadCommand(make<LCDylib>(LC_ID_DYLIB, config->installName, in createLoadCommands()
766 uuidCommand = make<LCUuid>(); in createLoadCommands()
770 in.header->addLoadCommand(make<LCBuildVersion>(config->platformInfo)); in createLoadCommands()
772 in.header->addLoadCommand(make<LCMinVersion>(config->platformInfo)); in createLoadCommands()
776 make<LCBuildVersion>(*config->secondaryPlatformInfo)); in createLoadCommands()
781 in.header->addLoadCommand(make<LCMain>()); in createLoadCommands()
850 in.header->addLoadCommand(make<LCDylib>(lcType, dylibFile->installName, in createLoadCommands()
856 make<LCDylib>(LC_REEXPORT_DYLIB, dylibFile->installName)); in createLoadCommands()
860 in.header->addLoadCommand(make<LCFunctionStarts>(functionStartsSection)); in createLoadCommands()
862 in.header->addLoadCommand(make<LCDataInCode>(dataInCodeSection)); in createLoadCommands()
864 in.header->addLoadCommand(make<LCCodeSignature>(codeSignatureSection)); in createLoadCommands()
924 stringTableSection = make<StringTableSection>(); in createOutputSections()
926 indirectSymtabSection = make<IndirectSymtabSection>(); in createOutputSections()
928 codeSignatureSection = make<CodeSignatureSection>(); in createOutputSections()
930 dataInCodeSection = make<DataInCodeSection>(); in createOutputSections()
932 functionStartsSection = make<FunctionStartsSection>(); in createOutputSections()
934 make<BitcodeBundleSection>(); in createOutputSections()
938 make<PageZeroSection>(); in createOutputSections()
1209 in.header = make<MachHeaderSection>(); in createSyntheticSections()
1211 in.cStringSection = make<DeduplicatedCStringSection>(); in createSyntheticSections()
1213 in.cStringSection = make<CStringSection>(); in createSyntheticSections()
1215 config->dedupLiterals ? make<WordLiteralSection>() : nullptr; in createSyntheticSections()
1216 in.rebase = make<RebaseSection>(); in createSyntheticSections()
1217 in.binding = make<BindingSection>(); in createSyntheticSections()
1218 in.weakBinding = make<WeakBindingSection>(); in createSyntheticSections()
1219 in.lazyBinding = make<LazyBindingSection>(); in createSyntheticSections()
1220 in.exports = make<ExportSection>(); in createSyntheticSections()
1221 in.got = make<GotSection>(); in createSyntheticSections()
1222 in.tlvPointers = make<TlvPointerSection>(); in createSyntheticSections()
1223 in.lazyPointers = make<LazyPointerSection>(); in createSyntheticSections()
1224 in.stubs = make<StubsSection>(); in createSyntheticSections()
1225 in.stubHelper = make<StubHelperSection>(); in createSyntheticSections()
1227 in.objCImageInfo = make<ObjCImageInfoSection>(); in createSyntheticSections()