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

Declarations

tools/lldb/include/lldb/Symbol/ObjectFile.h
  303   virtual SectionList *GetSectionList(bool update_module_section_list = true);

References

tools/lldb/source/API/SBTarget.cpp
 2238         SectionList *section_list = objfile->GetSectionList();
tools/lldb/source/Core/DynamicLoader.cpp
  146       sections = obj_file->GetSectionList();
tools/lldb/source/Core/Value.cpp
  417             Address so_addr(address, objfile->GetSectionList());
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  876         SectionList *ondisk_section_list = ondisk_object_file->GetSectionList();
  877         SectionList *memory_section_list = memory_object_file->GetSectionList();
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  547       sections = obj_file->GetSectionList();
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  232       SectionList *section_list = image_object_file->GetSectionList();
  309       SectionList *section_list = image_object_file->GetSectionList();
  626         SectionList *sections = objfile->GetSectionList();
tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
   85         SectionList *section_list = image_object_file->GetSectionList();
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  341           const SectionList *section_list = image_object_file->GetSectionList();
  375           const SectionList *section_list = image_object_file->GetSectionList();
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  651     SectionList *section_list = GetSectionList();
  805   SectionList *section_list = GetSectionList();
  875   SectionList *section_list = GetSectionList();
  892         GetSectionList()->FindSectionByID(SegmentID(EnumPHdr.index())), 0);
  907   SectionList *section_list = GetSectionList();
 1849     if (auto gdd_objfile_section_list = gdd_obj_file->GetSectionList()) {
 1870       GetSectionList()->FindSectionByName(ConstString(".gnu_debugdata"));
 2312   SectionList *section_list = GetSectionList();
 2643   SectionList *section_list = GetSectionList();
 2722         GetSectionList()->FindSectionByName(ConstString(".gnu_debugdata"))) {
 2867   SectionList *section_list = GetSectionList();
 2949   SectionList *section_list = GetSectionList();
tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  162     SectionList *sections = GetSectionList();
  209   SectionList *section_list = GetSectionList();
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2157   SectionList *section_list = GetSectionList();
 2508         GetSectionList()->FindSectionByName(text_segment_name);
 4732     SectionList *sections = GetSectionList();
 5238             GetSectionList()->FindSectionByName(text_segment_name);
 5270               start_address, GetSectionList())) {
 5297   SectionList *section_list = GetSectionList();
 5568       SectionList *section_list = GetSectionList();
 5925   SectionList *section_list = GetSectionList();
 5979   SectionList *section_list = GetSectionList();
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  326     SectionList *section_list = GetSectionList();
  527   SectionList *sect_list = GetSectionList();
  632       SectionList *sect_list = GetSectionList();
 1017   SectionList *section_list = GetSectionList();
 1029   return Address(GetSectionList()->GetSectionAtIndex(0), 0);
 1049     SectionList *sections = GetSectionList();
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  212   SectionList *section_list = core_objfile->GetSectionList();
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
   43         m_next_section_idx(m_obj->GetSectionList()->GetNumSections(0)),
   90       *obj.GetSectionList()->GetSectionAtIndex(m_next_section_idx - 1);
  103   const SectionList &list = *m_obj->GetSectionList();
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  486     const SectionList *section_list = m_objfile_sp->GetSectionList();
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
   26     : SymbolFileDWARF(objfile, objfile->GetSectionList(
   35       m_objfile_sp->GetSectionList(false /* update_module_section_list */);
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
  125       m_obj_file->GetSectionList(false /* update_module_section_list */);
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
 1386   auto section_list = m_objfile_sp->GetSectionList();
tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
   75   if (obj_file->GetSectionList()->FindSectionByType(
  119   SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList();
tools/lldb/source/Symbol/CompactUnwindInfo.cpp
  199         SectionList *sl = m_objfile.GetSectionList();
  501   SectionList *sl = m_objfile.GetSectionList();
  573       SectionList *sl = m_objfile.GetSectionList();
  592           SectionList *sl = m_objfile.GetSectionList();
  657       SectionList *sl = m_objfile.GetSectionList();
  676           SectionList *sl = m_objfile.GetSectionList();
  818       SectionList *sl = m_objfile.GetSectionList();
 1083       SectionList *sl = m_objfile.GetSectionList();
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  190                        m_objfile.GetSectionList());
  584                      m_objfile.GetSectionList());
tools/lldb/source/Symbol/ObjectFile.cpp
  650   SectionList *section_list = GetSectionList();
tools/lldb/source/Symbol/SymbolFile.cpp
   50         module_obj_file->GetSectionList();
tools/lldb/source/Symbol/Symtab.cpp
  882       SectionList *sectlist = m_objfile->GetSectionList();
tools/lldb/unittests/ObjectFile/PECOFF/TestPECallFrameInfo.cpp
  210   SectionList *sect_list = object_file->GetSectionList();