Home
last modified time | relevance | path

Searched refs:sect_type (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/section/
H A DTestSectionAPI.py26 sect_type = s.GetSectionType()
27 if sect_type == lldb.eSectionTypeData:
30 elif sect_type == lldb.eSectionTypeContainer:
33 sect_type = ss.GetSectionType()
34 if sect_type == lldb.eSectionTypeData:
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRExecutionUnit.cpp518 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
521 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
524 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
527 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
530 sect_type = lldb::eSectionTypeOther; in GetSectionTypeFromSectionName()
536 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
538 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
566 sect_type = lldb::eSectionTypeDWARFDebugLoc; in GetSectionTypeFromSectionName()
599 sect_type = lldb::eSectionTypeInvalid; in GetSectionTypeFromSectionName()
601 sect_type = lldb::eSectionTypeOther; in GetSectionTypeFromSectionName()
[all …]
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp156 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() argument
161 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
172 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() argument
177 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
586 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType() argument
592 if (m_sections[idx]->GetType() == sect_type) { in FindSectionByType()
597 sect_type, check_children, 0); in FindSectionByType()
H A DAddress.cpp507 SectionType sect_type = section_sp->GetType(); in Dump() local
508 switch (sect_type) { in Dump()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DSection.h65 lldb::SectionSP FindSectionByType(lldb::SectionType sect_type,
110 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
121 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
/llvm-project-15.0.7/lldb/test/API/python_api/target/
H A DTestTargetAPI.py215 sect_type = s.GetSectionType()
216 if sect_type == lldb.eSectionTypeData:
219 elif sect_type == lldb.eSectionTypeContainer:
222 sect_type = ss.GetSectionType()
223 if sect_type == lldb.eSectionTypeData:
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h348 lldb::SectionType sect_type, size_t size, in AllocationRecord()
351 m_permissions(permissions), m_sect_type(sect_type), m_size(size), in AllocationRecord()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h345 virtual void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARF.cpp600 void SymbolFileDWARF::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData() argument
607 SectionSP section_sp(section_list->FindSectionByType(sect_type, true)); in LoadSectionData()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1861 SectionType sect_type = GetSectionType(header); in CreateSections() local
1864 GetTargetByteSize(sect_type, m_arch_spec); in CreateSections()
1875 sect_type, // Section type. in CreateSections()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1818 lldb::SectionType sect_type = GetSectionType(sect64.flags, section_name); in ProcessSegmentCommand() local
1822 sect_type, sect64.addr - segment_sp->GetFileAddress(), sect64.size, in ProcessSegmentCommand()