Home
last modified time | relevance | path

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

/freebsd/contrib/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 GetTypes()
543 LLDB_INSTRUMENT_VA(this, sect_name); in GetTypes()
548 if (sect_name && module_sp) { in FindSection() argument
553 ConstString const_sect_name(sect_name); in FindSection()
/freebsd/contrib/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()
/freebsd/contrib/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);
/freebsd/contrib/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()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2211 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols() local
2212 if (sect_name == text_section_name || sect_name == init_section_name || in ParseSymbols()
2213 sect_name == fini_section_name || sect_name == ctors_section_name || in ParseSymbols()
2214 sect_name == dtors_section_name) { in ParseSymbols()
2216 } else if (sect_name == data_section_name || in ParseSymbols()
2217 sect_name == data2_section_name || in ParseSymbols()
2218 sect_name == rodata_section_name || in ParseSymbols()
2219 sect_name == rodata1_section_name || in ParseSymbols()
2220 sect_name == bss_section_name) { in ParseSymbols()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp2962 const char *sect_name = args.GetArgumentAtIndex(i); in DoExecute() local
2964 if (sect_name && load_addr_cstr) { in DoExecute()
2965 ConstString const_sect_name(sect_name); in DoExecute()
2975 sect_name); in DoExecute()
2983 sect_name, load_addr); in DoExecute()
2989 sect_name); in DoExecute()
2998 if (sect_name) in DoExecute()