Lines Matching refs:PartialSection
263 PartialSection *createPartialSection(StringRef name, uint32_t outChars);
264 PartialSection *findPartialSection(StringRef name, uint32_t outChars);
280 std::map<PartialSectionKey, PartialSection *> partialSections;
388 void OutputSection::addContributingPartialSection(PartialSection *sec) { in addContributingPartialSection()
820 PartialSection *pSec = it.second; in fixPartialSectionChars()
827 PartialSection *destSec = createPartialSection(pSec->name, chars); in fixPartialSectionChars()
855 PartialSection *pSec = it.second; in fixGnuImportChunks()
892 PartialSection *pSec = createPartialSection(n, rdata); in addSyntheticIdata()
911 if (PartialSection *importDirs = findPartialSection(".idata$2", rdata)) { in locateImportTables()
918 if (PartialSection *importAddresses = findPartialSection(".idata$5", rdata)) { in locateImportTables()
1015 PartialSection *pSec = createPartialSection(name, in createSections()
1041 PartialSection *pSec = it.second; in createSections()
2365 PartialSection *Writer::createPartialSection(StringRef name, in createPartialSection()
2367 PartialSection *&pSec = partialSections[{name, outChars}]; in createPartialSection()
2370 pSec = make<PartialSection>(name, outChars); in createPartialSection()
2374 PartialSection *Writer::findPartialSection(StringRef name, uint32_t outChars) { in findPartialSection()