Home
last modified time | relevance | path

Searched refs:m_symbols (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp35 : m_objfile(objfile), m_symbols(), m_file_addr_to_index(*this), in Symtab()
54 m_symbols.reserve(count); in Reserve()
60 m_symbols.resize(count); in Resize()
61 return m_symbols.empty() ? nullptr : &m_symbols[0]; in Resize()
67 uint32_t symbol_idx = m_symbols.size(); in AddSymbol()
71 m_symbols.push_back(symbol); in AddSymbol()
79 return m_symbols.size(); in GetNumSymbols()
102 (uint64_t)m_symbols.size()); in Dump()
104 s->Printf("Symtab, num_symbols = %" PRIu64 "", (uint64_t)m_symbols.size()); in Dump()
106 if (!m_symbols.empty()) { in Dump()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h274 collection m_symbols; variable
296 if (m_symbols[idx].IsDebug()) in CheckSymbolAtIndex()
301 if (!m_symbols[idx].IsDebug()) in CheckSymbolAtIndex()
314 return m_symbols[idx].IsExternal(); in CheckSymbolAtIndex()
317 return !m_symbols[idx].IsExternal(); in CheckSymbolAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp739 m_symbols.push_back(std::string(option_arg)); in SetOptionValue()
753 m_symbols.clear(); in OptionParsingStarting()
766 std::vector<std::string> m_symbols; member in CommandObjectFrameRecognizerAdd::CommandOptions
847 if (m_options.m_symbols.empty()) { in DoExecute()
854 if (m_options.m_regex && m_options.m_symbols.size() > 1) { in DoExecute()
876 RegularExpressionSP(new RegularExpression(m_options.m_symbols.front())); in DoExecute()
881 std::vector<ConstString> symbols(m_options.m_symbols.begin(), in DoExecute()
882 m_options.m_symbols.end()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp156 m_symbols(std::move(symbols)), m_sections(std::move(sections)) {} in ObjectFileJSON()
166 for (JSONSymbol json_symbol : m_symbols) { in ParseSymtab()
H A DObjectFileJSON.h108 std::vector<JSONSymbol> m_symbols; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/JSON/
H A DSymbolFileJSON.h106 std::vector<std::pair<uint64_t, std::string>> m_symbols; variable