Home
last modified time | relevance | path

Searched refs:sect_sp (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp507 size_t SectionList::AddUniqueSection(const lldb::SectionSP &sect_sp) { in AddUniqueSection() argument
508 size_t sect_idx = FindSectionIndex(sect_sp.get()); in AddUniqueSection()
510 sect_idx = AddSection(sect_sp); in AddUniqueSection()
516 const lldb::SectionSP &sect_sp, in ReplaceSection() argument
521 *sect_iter = sect_sp; in ReplaceSection()
526 .ReplaceSection(sect_id, sect_sp, depth - 1)) in ReplaceSection()
545 SectionSP sect_sp; in GetSectionAtIndex() local
547 sect_sp = m_sections[idx]; in GetSectionAtIndex()
548 return sect_sp; in GetSectionAtIndex()
553 SectionSP sect_sp; in FindSectionByName() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp78 SectionSP sect_sp = sect_list->FindSectionByName(ConstString(".text")); in HashElfTextSection() local
79 if (!sect_sp) in HashElfTextSection()
87 const size_t text_size = sect_sp->GetFileSize(); in HashElfTextSection()
90 sect_sp->GetObjectFile()->GetData(sect_sp->GetFileOffset(), read_size, data); in HashElfTextSection()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp249 SectionSP sect_sp = mod->GetObjectFile()->GetBaseAddress().GetSection(); in getModuleFileSize() local
251 if (!sect_sp) { in getModuleFileSize()
255 lldb::addr_t sect_addr = sect_sp->GetLoadBaseAddress(&target); in getModuleFileSize()
258 lldb::addr_t sect_size = sect_sp->GetByteSize(); in getModuleFileSize()
271 sect_size = sect_sp->GetByteSize(); in getModuleFileSize()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp915 SectionSP sect_sp = sectlist->GetSectionAtIndex(i); in AddSectionsToRangeMap() local
916 if (sect_sp) { in AddSectionsToRangeMap()
917 SectionList &child_sectlist = sect_sp->GetChildren(); in AddSectionsToRangeMap()
924 size_t size = sect_sp->GetByteSize(); in AddSectionsToRangeMap()
926 addr_t base_addr = sect_sp->GetFileAddress(); in AddSectionsToRangeMap()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1880 SectionSP sect_sp; in FindMatchingSection() local
1895 sect_sp = sect; in FindMatchingSection()
1898 sect_sp = FindMatchingSection(sect->GetChildren(), section); in FindMatchingSection()
1899 if (sect_sp) in FindMatchingSection()
1904 return sect_sp; in FindMatchingSection()