Home
last modified time | relevance | path

Searched refs:GetDebugInfoSize (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp88 uint64_t SymbolFileDWARFDwo::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileDWARFDwo
95 return section_list->GetDebugInfoSize(); in GetDebugInfoSize()
H A DSymbolFileDWARFDwo.h50 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
H A DDWARFUnit.h116 size_t GetDebugInfoSize() const;
H A DDWARFUnit.cpp258 m_die_array.reserve(GetDebugInfoSize() / 24); in ExtractDIEsRWLocked()
441 size_t DWARFUnit::GetDebugInfoSize() const { in GetDebugInfoSize() function in DWARFUnit
H A DSymbolFileDWARF.h189 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
H A DSymbolFileDWARF.cpp2712 uint64_t SymbolFileDWARF::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileDWARF
2716 uint64_t debug_info_size = SymbolFileCommon::GetDebugInfoSize(); in GetDebugInfoSize()
2719 return debug_info_size + dwp_sp->GetDebugInfoSize(); in GetDebugInfoSize()
2729 debug_info_size += dwo->GetDebugInfoSize(); in GetDebugInfoSize()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFile.cpp230 uint64_t SymbolFileCommon::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileCommon
238 return section_list->GetDebugInfoSize(); in GetDebugInfoSize()
H A DSymbolFileOnDemand.cpp537 uint64_t SymbolFileOnDemand::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileOnDemand
541 return m_sym_file_impl->GetDebugInfoSize(load_all_debug_info); in GetDebugInfoSize()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h402 virtual uint64_t GetDebugInfoSize(bool load_all_debug_info = false) = 0;
545 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
H A DSymbolFileOnDemand.h181 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp669 uint64_t SectionList::GetDebugInfoSize() const { in GetDebugInfoSize() function in SectionList
674 debug_info_size += sub_sections.GetDebugInfoSize(); in GetDebugInfoSize()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h143 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
H A DSymbolFileBreakpad.cpp921 uint64_t SymbolFileBreakpad::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileBreakpad
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h97 uint64_t GetDebugInfoSize() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h80 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
H A DSymbolFileNativePDB.cpp2159 uint64_t SymbolFileNativePDB::GetDebugInfoSize(bool load_all_debug_info) { in GetDebugInfoSize() function in SymbolFileNativePDB
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp291 sym_file->GetDebugInfoSize(load_all_debug_info); in ReportStatistics()