Searched refs:sect_type (Results 1 – 9 of 9) sorted by relevance
/external/lldb/source/Plugins/ObjectFile/ELF/ |
D | ObjectFileELF.cpp | 886 SectionType sect_type = eSectionTypeOther; in CreateSections() local 890 if (name == g_sect_name_text) sect_type = eSectionTypeCode; in CreateSections() 891 else if (name == g_sect_name_data) sect_type = eSectionTypeData; in CreateSections() 892 else if (name == g_sect_name_bss) sect_type = eSectionTypeZeroFill; in CreateSections() 895 sect_type = eSectionTypeData; in CreateSections() 900 sect_type = eSectionTypeZeroFill; in CreateSections() 917 … else if (name == g_sect_name_dwarf_debug_abbrev) sect_type = eSectionTypeDWARFDebugAbbrev; in CreateSections() 918 … else if (name == g_sect_name_dwarf_debug_aranges) sect_type = eSectionTypeDWARFDebugAranges; in CreateSections() 919 … else if (name == g_sect_name_dwarf_debug_frame) sect_type = eSectionTypeDWARFDebugFrame; in CreateSections() 920 … else if (name == g_sect_name_dwarf_debug_info) sect_type = eSectionTypeDWARFDebugInfo; in CreateSections() [all …]
|
/external/lldb/source/Core/ |
D | Section.cpp | 22 SectionType sect_type, in Section() argument 32 m_type (sect_type), in Section() 53 SectionType sect_type, in Section() argument 63 m_type (sect_type), in Section() 457 SectionList::FindSectionByType (SectionType sect_type, bool check_children, size_t start_idx) const in FindSectionByType() argument 463 if (m_sections[idx]->GetType() == sect_type) in FindSectionByType() 470 … sect_sp = m_sections[idx]->GetChildren().FindSectionByType (sect_type, check_children, 0); in FindSectionByType()
|
D | Address.cpp | 454 SectionType sect_type = section_sp->GetType(); in Dump() local 455 switch (sect_type) in Dump()
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 1235 SectionType sect_type = eSectionTypeOther; in CreateSections() local 1238 sect_type = eSectionTypeDWARFDebugAbbrev; in CreateSections() 1240 sect_type = eSectionTypeDWARFDebugAranges; in CreateSections() 1242 sect_type = eSectionTypeDWARFDebugFrame; in CreateSections() 1244 sect_type = eSectionTypeDWARFDebugInfo; in CreateSections() 1246 sect_type = eSectionTypeDWARFDebugLine; in CreateSections() 1248 sect_type = eSectionTypeDWARFDebugLoc; in CreateSections() 1250 sect_type = eSectionTypeDWARFDebugMacInfo; in CreateSections() 1252 sect_type = eSectionTypeDWARFDebugPubNames; in CreateSections() 1254 sect_type = eSectionTypeDWARFDebugPubTypes; in CreateSections() [all …]
|
/external/lldb/include/lldb/Core/ |
D | Section.h | 62 … FindSectionByType (lldb::SectionType sect_type, bool check_children, size_t start_idx = 0) const; 117 lldb::SectionType sect_type, 130 lldb::SectionType sect_type,
|
/external/lldb/include/lldb/ |
D | lldb-private.h | 73 GetSectionTypeAsCString (lldb::SectionType sect_type);
|
/external/lldb/source/ |
D | lldb.cpp | 348 lldb_private::GetSectionTypeAsCString (SectionType sect_type) in GetSectionTypeAsCString() argument 350 switch (sect_type) in GetSectionTypeAsCString()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.h | 227 lldb::SectionType sect_type,
|
D | SymbolFileDWARF.cpp | 703 SymbolFileDWARF::GetCachedSectionData (uint32_t got_flag, SectionType sect_type, DataExtractor &dat… in GetCachedSectionData() argument 712 SectionSP section_sp (section_list->FindSectionByType(sect_type, true)); in GetCachedSectionData()
|