Home
last modified time | relevance | path

Searched refs:m_lldb_cu_to_dwarf_unit (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp719 if (!m_lldb_cu_to_dwarf_unit.empty()) in BuildCuTranslationTable()
729 cu->SetID(m_lldb_cu_to_dwarf_unit.size()); in BuildCuTranslationTable()
730 m_lldb_cu_to_dwarf_unit.push_back(i); in BuildCuTranslationTable()
737 if (m_lldb_cu_to_dwarf_unit.empty()) in GetDWARFUnitIndex()
739 if (cu_idx >= m_lldb_cu_to_dwarf_unit.size()) in GetDWARFUnitIndex()
741 return m_lldb_cu_to_dwarf_unit[cu_idx]; in GetDWARFUnitIndex()
746 return m_lldb_cu_to_dwarf_unit.empty() ? DebugInfo().GetNumUnits() in CalculateNumCompileUnits()
747 : m_lldb_cu_to_dwarf_unit.size(); in CalculateNumCompileUnits()
DSymbolFileDWARF.h519 std::vector<uint32_t> m_lldb_cu_to_dwarf_unit; variable