Searched refs:sect_name (Results 1 – 12 of 12) sorted by relevance
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBSection.cpp | 78 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 D | SBModule.cpp | 546 SBSection SBModule::FindSection(const char *sect_name) { in FindSection() argument 547 LLDB_INSTRUMENT_VA(this, sect_name); in FindSection() 552 if (sect_name && module_sp) { in FindSection() 557 ConstString const_sect_name(sect_name); in FindSection()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBSection.h | 35 lldb::SBSection FindSubSection(const char *sect_name);
|
| H A D | SBModule.h | 113 lldb::SBSection FindSection(const char *sect_name);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/ |
| H A D | ObjectFileWasm.cpp | 184 llvm::Optional<ConstString> sect_name = GetWasmString(data, c); in DecodeNextSection() local 185 if (!sect_name) in DecodeNextSection() 193 section_id, *sect_name}); in DecodeNextSection()
|
| /llvm-project-15.0.7/lldb/tools/compact-unwind/ |
| H A D | compact-unwind-dumper.c | 179 char sect_name[17]; in scan_macho_load_commands() local 180 memcpy(§_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-15.0.7/lldb/bindings/interface/ |
| H A D | SBSection.i | 61 FindSubSection (const char *sect_name);
|
| H A D | SBModule.i | 195 FindSection (const char *sect_name);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.cpp | 2109 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols() local 2110 if (sect_name == text_section_name || sect_name == init_section_name || in ParseSymbols() 2111 sect_name == fini_section_name || sect_name == ctors_section_name || in ParseSymbols() 2112 sect_name == dtors_section_name) { in ParseSymbols() 2114 } else if (sect_name == data_section_name || in ParseSymbols() 2115 sect_name == data2_section_name || in ParseSymbols() 2116 sect_name == rodata_section_name || in ParseSymbols() 2117 sect_name == rodata1_section_name || in ParseSymbols() 2118 sect_name == bss_section_name) { in ParseSymbols() 2249 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols() local [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | ObjectFilePECOFF.cpp | 903 SectionType ObjectFilePECOFF::GetSectionType(llvm::StringRef sect_name, in GetSectionType() argument 905 ConstString const_sect_name(sect_name); in GetSectionType() 936 llvm::StringSwitch<SectionType>(sect_name) in GetSectionType() 996 llvm::StringRef sect_name = GetSectionName(m_sect_headers[idx]); in CreateSections() local 997 ConstString const_sect_name(sect_name); in CreateSections() 998 SectionType section_type = GetSectionType(sect_name, m_sect_headers[idx]); in CreateSections()
|
| H A D | ObjectFilePECOFF.h | 291 static lldb::SectionType GetSectionType(llvm::StringRef sect_name,
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 2734 const char *sect_name = args.GetArgumentAtIndex(i); in DoExecute() local 2736 if (sect_name && load_addr_cstr) { in DoExecute() 2737 ConstString const_sect_name(sect_name); in DoExecute() 2747 sect_name); in DoExecute() 2755 sect_name, load_addr); in DoExecute() 2761 sect_name); in DoExecute() 2770 if (sect_name) in DoExecute()
|