Home
last modified time | relevance | path

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

/llvm-project/lldb/source/API/
H A DSBSection.cpp78 lldb::SBSection SBSection::FindSubSection(const char *sect_name) { in FindSubSection() argument
79 LLDB_INSTRUMENT_VA(this, sect_name); in FindSubSection()
82 if (sect_name) { in FindSubSection()
85 ConstString const_sect_name(sect_name); in FindSubSection()
H A DSBModule.cpp542 SBSection SBModule::FindSection(const char *sect_name) { in FindSection() argument
543 LLDB_INSTRUMENT_VA(this, sect_name); in FindSection()
548 if (sect_name && module_sp) { in FindSection()
553 ConstString const_sect_name(sect_name); in FindSection()
/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp185 std::optional<ConstString> sect_name = GetWasmString(data, c); in DecodeNextSection() local
186 if (!sect_name) in DecodeNextSection()
194 section_id, *sect_name}); in DecodeNextSection()
/llvm-project/lldb/include/lldb/API/
H A DSBSection.h35 lldb::SBSection FindSubSection(const char *sect_name);
H A DSBModule.h113 lldb::SBSection FindSection(const char *sect_name);
/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c179 char sect_name[17]; in scan_macho_load_commands() local
180 memcpy(&sect_name, offset, 16); in scan_macho_load_commands()
181 sect_name[16] = '\0'; in scan_macho_load_commands()
182 if (strcmp(sect_name, "__unwind_info") == 0) { in scan_macho_load_commands()
197 if (strcmp(sect_name, "__eh_frame") == 0) { in scan_macho_load_commands()
210 if (strcmp(sect_name, "__text") == 0) { in scan_macho_load_commands()
/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp959 SectionType ObjectFilePECOFF::GetSectionType(llvm::StringRef sect_name, in GetSectionType()
961 ConstString const_sect_name(sect_name); in GetSectionType()
992 llvm::StringSwitch<SectionType>(sect_name) in GetSectionType()
1064 llvm::StringRef sect_name = GetSectionName(m_sect_headers[idx]); in CreateSections()
1065 ConstString const_sect_name(sect_name); in CreateSections()
1066 SectionType section_type = GetSectionType(sect_name, m_sect_headers[idx]); in CreateSections()
957 GetSectionType(llvm::StringRef sect_name,const section_header_t & sect) GetSectionType() argument
1060 llvm::StringRef sect_name = GetSectionName(m_sect_headers[idx]); CreateSections() local
H A DObjectFilePECOFF.h264 static lldb::SectionType GetSectionType(llvm::StringRef sect_name,
/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2206 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols()
2207 if (sect_name == text_section_name || sect_name == init_section_name || in ParseSymbols()
2208 sect_name == fini_section_name || sect_name == ctors_section_name || in ParseSymbols()
2209 sect_name == dtors_section_name) { in ParseSymbols()
2211 } else if (sect_name == data_section_name || in ParseSymbols()
2212 sect_name == data2_section_name || in ParseSymbols()
2213 sect_name == rodata_section_name || in ParseSymbols()
2214 sect_name in ParseSymbols()
2194 ConstString sect_name = symbol_section_sp->GetName(); ParseSymbols() local
[all...]
/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp2961 const char *sect_name = args.GetArgumentAtIndex(i); in DoExecute()
2963 if (sect_name && load_addr_cstr) { in DoExecute()
2964 ConstString const_sect_name(sect_name); in DoExecute()
2974 sect_name); in DoExecute()
2982 sect_name, load_addr); in DoExecute()
2988 sect_name); in DoExecute()
2997 if (sect_name) in DoExecute()
2962 const char *sect_name = args.GetArgumentAtIndex(i); DoExecute() local