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.cpp54 m_symbols.reserve(count); in Reserve()
60 m_symbols.resize(count); in Resize()
61 return m_symbols.empty() ? nullptr : &m_symbols[0]; in Resize()
71 m_symbols.push_back(symbol); in AddSymbol()
79 return m_symbols.size(); in GetNumSymbols()
106 if (!m_symbols.empty()) { in Dump()
127 for (const_iterator pos = m_symbols.begin(), end = m_symbols.end(); in Dump()
211 (Symbol *)::bsearch(&symbol_uid, &m_symbols[0], m_symbols.size(), in FindSymbolByID()
220 return &m_symbols[idx]; in SymbolAtIndex()
228 return &m_symbols[idx]; in SymbolAtIndex()
[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.cpp783 m_symbols.push_back(std::string(option_arg)); in SetOptionValue()
797 m_symbols.clear(); in OptionParsingStarting()
810 std::vector<std::string> m_symbols; member in CommandObjectFrameRecognizerAdd::CommandOptions
891 if (m_options.m_symbols.empty()) { in DoExecute()
898 if (m_options.m_regex && m_options.m_symbols.size() > 1) { in DoExecute()
920 RegularExpressionSP(new RegularExpression(m_options.m_symbols.front())); in DoExecute()
925 std::vector<ConstString> symbols(m_options.m_symbols.begin(), in DoExecute()
926 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