Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/python_api/section/
DTestSectionAPI.py29 sect_type = s.GetSectionType()
30 if sect_type == lldb.eSectionTypeData:
33 elif sect_type == lldb.eSectionTypeContainer:
36 sect_type = ss.GetSectionType()
37 if sect_type == lldb.eSectionTypeData:
/external/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp491 lldb::SectionType sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName() local
494 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
497 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
500 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
503 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
506 sect_type = lldb::eSectionTypeOther; in GetSectionTypeFromSectionName()
512 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
514 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
521 sect_type = lldb::eSectionTypeDWARFDebugAbbrev; in GetSectionTypeFromSectionName()
523 sect_type = lldb::eSectionTypeDWARFDebugAranges; in GetSectionTypeFromSectionName()
[all …]
/external/llvm-project/lldb/source/Core/
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()
178 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() argument
183 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
524 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType() argument
530 if (m_sections[idx]->GetType() == sect_type) { in FindSectionByType()
535 sect_type, check_children, 0); in FindSectionByType()
DAddress.cpp492 SectionType sect_type = section_sp->GetType(); in Dump() local
493 switch (sect_type) { in Dump()
/external/llvm-project/lldb/include/lldb/Core/
DSection.h65 lldb::SectionSP FindSectionByType(lldb::SectionType sect_type,
104 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
115 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
/external/llvm-project/lldb/test/API/python_api/target/
DTestTargetAPI.py207 sect_type = s.GetSectionType()
208 if sect_type == lldb.eSectionTypeData:
211 elif sect_type == lldb.eSectionTypeContainer:
214 sect_type = ss.GetSectionType()
215 if sect_type == lldb.eSectionTypeData:
/external/llvm-project/lldb/include/lldb/Expression/
DIRExecutionUnit.h353 lldb::SectionType sect_type, size_t size, in AllocationRecord()
357 m_sect_type(sect_type), m_size(size), m_alignment(alignment), in AllocationRecord()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.h335 virtual void LoadSectionData(lldb::SectionType sect_type,
DSymbolFileDWARF.cpp588 void SymbolFileDWARF::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData() argument
595 SectionSP section_sp(section_list->FindSectionByType(sect_type, true)); in LoadSectionData()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1818 SectionType sect_type = GetSectionType(header); in CreateSections() local
1821 GetTargetByteSize(sect_type, m_arch_spec); in CreateSections()
1832 sect_type, // Section type. in CreateSections()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp1778 lldb::SectionType sect_type = GetSectionType(sect64.flags, section_name); in ProcessSegmentCommand() local
1782 sect_type, sect64.addr - segment_sp->GetFileAddress(), sect64.size, in ProcessSegmentCommand()