Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBSection.cpp82 lldb::SBSection SBSection::FindSubSection(const char *sect_name) { in FindSubSection() argument
84 sect_name); in FindSubSection()
87 if (sect_name) { in FindSubSection()
90 ConstString const_sect_name(sect_name); in FindSubSection()
DSBModule.cpp560 SBSection SBModule::FindSection(const char *sect_name) { in FindSection() argument
562 sect_name); in FindSection()
567 if (sect_name && module_sp) { in FindSection()
572 ConstString const_sect_name(sect_name); in FindSection()
/external/toolchain-utils/crosperf/
Dresults_report_templates.py58 sect_name=table_name,
/external/llvm-project/lldb/include/lldb/API/
DSBSection.h35 lldb::SBSection FindSubSection(const char *sect_name);
DSBModule.h111 lldb::SBSection FindSection(const char *sect_name);
/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp188 llvm::Optional<ConstString> sect_name = GetWasmString(data, c); in DecodeNextSection() local
189 if (!sect_name) in DecodeNextSection()
197 section_id, *sect_name}); in DecodeNextSection()
/external/llvm-project/lldb/bindings/interface/
DSBSection.i61 FindSubSection (const char *sect_name);
DSBModule.i188 FindSection (const char *sect_name);
/external/llvm-project/lldb/tools/compact-unwind/
Dcompact-unwind-dumper.c222 char sect_name[17]; in scan_macho_load_commands() local
223 memcpy(&sect_name, offset, 16); in scan_macho_load_commands()
224 sect_name[16] = '\0'; in scan_macho_load_commands()
225 if (strcmp(sect_name, "__unwind_info") == 0) { in scan_macho_load_commands()
240 if (strcmp(sect_name, "__eh_frame") == 0) { in scan_macho_load_commands()
253 if (strcmp(sect_name, "__text") == 0) { in scan_macho_load_commands()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp2066 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols() local
2067 if (sect_name == text_section_name || sect_name == init_section_name || in ParseSymbols()
2068 sect_name == fini_section_name || sect_name == ctors_section_name || in ParseSymbols()
2069 sect_name == dtors_section_name) { in ParseSymbols()
2071 } else if (sect_name == data_section_name || in ParseSymbols()
2072 sect_name == data2_section_name || in ParseSymbols()
2073 sect_name == rodata_section_name || in ParseSymbols()
2074 sect_name == rodata1_section_name || in ParseSymbols()
2075 sect_name == bss_section_name) { in ParseSymbols()
2206 ConstString sect_name = symbol_section_sp->GetName(); in ParseSymbols() local
[all …]
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp750 SectionType ObjectFilePECOFF::GetSectionType(llvm::StringRef sect_name, in GetSectionType() argument
752 ConstString const_sect_name(sect_name); in GetSectionType()
783 llvm::StringSwitch<SectionType>(sect_name) in GetSectionType()
843 llvm::StringRef sect_name = GetSectionName(m_sect_headers[idx]); in CreateSections() local
844 ConstString const_sect_name(sect_name); in CreateSections()
845 SectionType section_type = GetSectionType(sect_name, m_sect_headers[idx]); in CreateSections()
DObjectFilePECOFF.h286 static lldb::SectionType GetSectionType(llvm::StringRef sect_name,
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp2756 const char *sect_name = args.GetArgumentAtIndex(i); in DoExecute() local
2758 if (sect_name && load_addr_cstr) { in DoExecute()
2759 ConstString const_sect_name(sect_name); in DoExecute()
2769 sect_name); in DoExecute()
2778 sect_name, load_addr); in DoExecute()
2784 sect_name); in DoExecute()
2795 if (sect_name) in DoExecute()