reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Core/Address.h
  310     return IsValid() && (GetSection().get() != nullptr);
tools/lldb/source/API/SBAddress.cpp
  172     sb_section.SetSP(m_opaque_up->GetSection());
tools/lldb/source/Breakpoint/Breakpoint.cpp
  542         SectionSP section_sp(section_addr.GetSection());
  594           SectionSP section_sp(break_loc_sp->GetAddress().GetSection());
  668     SectionSP section_sp = break_loc_sp->GetAddress().GetSection();
tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
   88     SectionSP section_sp(break_loc->GetAddress().GetSection());
tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
   71   SectionSP section_sp = m_addr.GetSection();
  101   if (m_addr.GetSection() || m_module_filespec)
  114   if (m_addr.GetSection())
tools/lldb/source/Commands/CommandObjectMemory.cpp
 1725             SectionSP section_sp(addr.GetSection());
tools/lldb/source/Commands/CommandObjectThread.cpp
 1187         Address fun_end_addr(fun_start_addr.GetSection(),
tools/lldb/source/Core/Address.cpp
  284   SectionSP section_sp(GetSection());
  291   SectionSP section_sp(GetSection());
  311   SectionSP section_sp(GetSection());
  396   SectionSP section_sp(GetSection());
  659                 if (sc.symbol->GetAddressRef().GetSection() != GetSection()) {
  659                 if (sc.symbol->GetAddressRef().GetSection() != GetSection()) {
  700               sc.symbol->GetAddressRef().GetSection() != GetSection())
  700               sc.symbol->GetAddressRef().GetSection() != GetSection())
  777   if (GetSection())
  802   SectionSP section_sp(GetSection());
  816   SectionSP section_sp(GetSection());
  823   SectionSP section_sp(GetSection());
  837   SectionSP section_sp(GetSection());
  851   SectionSP section_sp(GetSection());
  865   SectionSP section_sp(GetSection());
  879   SectionSP section_sp(GetSection());
  988   return a.GetOffset() == rhs.GetOffset() && a.GetSection() == rhs.GetSection();
  988   return a.GetOffset() == rhs.GetOffset() && a.GetSection() == rhs.GetSection();
  994   return a.GetOffset() != rhs.GetOffset() || a.GetSection() != rhs.GetSection();
  994   return a.GetOffset() != rhs.GetOffset() || a.GetSection() != rhs.GetSection();
tools/lldb/source/Core/AddressRange.cpp
   63   if (addr.GetSection() == m_base_addr.GetSection())
   63   if (addr.GetSection() == m_base_addr.GetSection())
   95   if (addr.GetSection() == m_base_addr.GetSection())
   95   if (addr.GetSection() == m_base_addr.GetSection())
  201             static_cast<void *>(m_base_addr.GetSection().get()),
tools/lldb/source/Core/FormatEntity.cpp
  476       if (func_addr.GetSection() == format_addr.GetSection()) {
  476       if (func_addr.GetSection() == format_addr.GetSection()) {
tools/lldb/source/Core/Module.cpp
  449   SectionSP section_sp(so_addr.GetSection());
  545           if (addr_range.GetBaseAddress().GetSection() ==
  546               so_addr.GetSection()) {
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
 1386       if (value_so_addr.IsValid() && value_so_addr.GetSection()) {
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 2797                       entry_point_addr.GetSection(), // Section where this
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1090       SectionSP section_sp(symbol->GetAddressRef().GetSection());
 4526             SectionSP symbol_section(symbol_addr.GetSection());
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  567     rva = addr.GetSection()->GetFileOffset() + addr.GetOffset();
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  182     if (m_current_pc.GetSection() == m_start_pc.GetSection()) {
  182     if (m_current_pc.GetSection() == m_start_pc.GetSection()) {
  457              addr_range.GetBaseAddress().GetSection() != m_current_pc.GetSection() ||
  457              addr_range.GetBaseAddress().GetSection() != m_current_pc.GetSection() ||
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
 1724                      static_cast<void *>(so_addr.GetSection().get()),
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  993           sc.function->GetAddressRange().GetBaseAddress().GetSection());
tools/lldb/source/Symbol/Block.cpp
  244     if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) {
  244     if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) {
  279     if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) {
  279     if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) {
tools/lldb/source/Symbol/Function.cpp
  366   SectionSP section_sp(m_range.GetBaseAddress().GetSection());
tools/lldb/source/Symbol/ObjectFile.cpp
  320         const SectionSP section_sp(symbol->GetAddressRef().GetSection());
tools/lldb/source/Symbol/Symbol.cpp
  119   return m_addr_range.GetBaseAddress().GetSection().get() != nullptr;
  182   if (m_addr_range.GetBaseAddress().GetSection()) {
tools/lldb/source/Target/Target.cpp
 1680   SectionSP section_sp(addr.GetSection());
tools/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp
  124   EXPECT_EQ(bss_sp, X->GetAddress().GetSection());
  129   EXPECT_EQ(data_sp, Y->GetAddress().GetSection());
  134   EXPECT_EQ(text_sp, start->GetAddress().GetSection());