Home
last modified time | relevance | path

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

/external/lldb/source/API/
DSBSection.cpp88 SBSection::FindSubSection (const char *sect_name) in FindSubSection() argument
91 if (sect_name) in FindSubSection()
96 ConstString const_sect_name(sect_name); in FindSubSection()
DSBModule.cpp581 SBModule::FindSection (const char *sect_name) in FindSection() argument
586 if (sect_name && module_sp) in FindSection()
593 ConstString const_sect_name(sect_name); in FindSection()
/external/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1112 const ConstString &sect_name = symbol_section_sp->GetName(); in ParseSymbols() local
1113 if (sect_name == text_section_name || in ParseSymbols()
1114 sect_name == init_section_name || in ParseSymbols()
1115 sect_name == fini_section_name || in ParseSymbols()
1116 sect_name == ctors_section_name || in ParseSymbols()
1117 sect_name == dtors_section_name) in ParseSymbols()
1121 else if (sect_name == data_section_name || in ParseSymbols()
1122 sect_name == data2_section_name || in ParseSymbols()
1123 sect_name == rodata_section_name || in ParseSymbols()
1124 sect_name == rodata1_section_name || in ParseSymbols()
[all …]
/external/lldb/include/lldb/API/
DSBSection.h41 FindSubSection (const char *sect_name);
DSBModule.h101 FindSection (const char *sect_name);
/external/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp491 ObjectFilePECOFF::GetSectionName(std::string& sect_name, const section_header_t& sect) in GetSectionName() argument
500 sect_name = name; in GetSectionName()
506 sect_name = sect.name; in GetSectionName()
624 std::string sect_name; in CreateSections() local
625 GetSectionName (sect_name, m_sect_headers[idx]); in CreateSections()
626 ConstString const_sect_name (sect_name.c_str()); in CreateSections()
DObjectFilePECOFF.h235 bool GetSectionName(std::string& sect_name, const section_header_t& sect);
/external/lldb/scripts/Python/interface/
DSBSection.i60 FindSubSection (const char *sect_name);
DSBModule.i158 FindSection (const char *sect_name);
/external/valgrind/drd/
Ddrd_error.c224 const HChar *sect_name; in drd_report_data_race() local
227 sect_kind = VG_(DebugInfo_sect_kind)(&sect_name, dri->addr); in drd_report_data_race()
231 sect_name, auxwhat_suffix); in drd_report_data_race()
/external/lldb/source/Commands/
DCommandObjectTarget.cpp2849 const char *sect_name = args.GetArgumentAtIndex(i); in DoExecute() local
2851 if (sect_name && load_addr_cstr) in DoExecute()
2853 ConstString const_sect_name(sect_name); in DoExecute()
2863 …pendErrorWithFormat ("thread specific sections are not yet supported (section '%s')\n", sect_name); in DoExecute()
2871 … result.AppendMessageWithFormat("section '%s' loaded at 0x%" PRIx64 "\n", sect_name, load_addr); in DoExecute()
2876 … result.AppendErrorWithFormat ("no section found that matches the section name '%s'\n", sect_name); in DoExecute()
2890 if (sect_name) in DoExecute()