Searched refs:publics (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbIndex.h76 /// about the symbol in the Symbol Records stream. The publics stream only
87 /// Symbol records stream. The publics and globals stream refer to records
135 llvm::pdb::PublicsStream &publics() { return *m_publics; } function in class:lldb_private::npdb::PdbIndex
136 const llvm::pdb::PublicsStream &publics() const { return *m_publics; } function in class:lldb_private::npdb::PdbIndex
H A DPdbAstBuilder.cpp410 PublicsStream &publics) {
411 llvm::FixedStreamArray<ulittle32_t> addr_map = publics.getAddressMap();
538 FindPublicSym(addr, m_index.symrecords(), m_index.publics());
408 FindPublicSym(const SegmentOffset &addr, SymbolStream &syms, PublicsStream &publics) argument
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp1307 assert(os && "all publics should be in final image");
1335 std::vector<PublicSym32> publics; local
1336 symtab->forEachSymbol([&publics](Symbol *s) {
1340 publics.push_back(createPublic(def));
1343 if (!publics.empty()) {
1344 publicSymbols = publics.size();
1346 parallelSort(publics, [](const PublicSym32 &l, const PublicSym32 &r) {
1349 for (const PublicSym32 &pub : publics)

Completed in 159 milliseconds