Home
last modified time | relevance | path

Searched refs:m_functions (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp755 if (!m_functions.empty()) in ParseFunctions()
829 lldb::user_id_t func_uid = m_functions.size(); in ParseFunctions()
833 m_functions.emplace_back(function_sp); in ParseFunctions()
838 LLDB_LOG(log, "CTF parsed {0} functions", m_functions.size()); in ParseFunctions()
840 return m_functions.size(); in ParseFunctions()
948 for (FunctionSP function_sp : m_functions) { in ResolveSymbolContext()
1065 for (FunctionSP function_sp : m_functions) { in FindFunctions()
1078 for (FunctionSP function_sp : m_functions) { in FindFunctions()
H A DSymbolFileCTF.h255 std::vector<lldb::FunctionSP> m_functions; variable
/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h275 llvm::DenseMap<lldb::user_id_t, lldb::FunctionSP> m_functions; variable
H A DSymbolFileNativePDB.cpp977 auto emplace_result = m_functions.try_emplace(toOpaqueUid(func_id), nullptr); in GetOrCreateType()