Searched refs:sect_type (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/lldb/test/API/python_api/section/ |
D | TestSectionAPI.py | 29 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/ |
D | IRExecutionUnit.cpp | 491 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/ |
D | Section.cpp | 156 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()
|
D | Address.cpp | 492 SectionType sect_type = section_sp->GetType(); in Dump() local 493 switch (sect_type) { in Dump()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Section.h | 65 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/ |
D | TestTargetAPI.py | 207 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/ |
D | IRExecutionUnit.h | 353 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/ |
D | SymbolFileDWARF.h | 335 virtual void LoadSectionData(lldb::SectionType sect_type,
|
D | SymbolFileDWARF.cpp | 588 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/ |
D | ObjectFileELF.cpp | 1818 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/ |
D | ObjectFileMachO.cpp | 1778 lldb::SectionType sect_type = GetSectionType(sect64.flags, section_name); in ProcessSegmentCommand() local 1782 sect_type, sect64.addr - segment_sp->GetFileAddress(), sect64.size, in ProcessSegmentCommand()
|