Lines Matching refs:pOutSect
35 bool SectionSymbolSet::add(LDSection& pOutSect, NamePool& pNamePool) { in add() argument
37 llvm::StringRef sym_name = llvm::StringRef(pOutSect.name()); in add()
54 m_pSectionSymbolMap->insert(&pOutSect, exist); in add()
61 bool SectionSymbolSet::finalize(LDSection& pOutSect, in finalize() argument
64 if (!relocatable && pOutSect.size() == 0) in finalize()
67 LDSymbol* sym = get(pOutSect); in finalize()
70 switch (pOutSect.kind()) { in finalize()
76 if (EhFrame* ehframe = pOutSect.getEhFrame()) in finalize()
81 data = pOutSect.getSectionData(); in finalize()
96 LDSymbol* SectionSymbolSet::get(const LDSection& pOutSect) { in get() argument
97 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); in get()
101 const LDSymbol* SectionSymbolSet::get(const LDSection& pOutSect) const { in get()
102 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); in get()