Searched refs:sect_name (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/lldb/source/API/ |
D | SBSection.cpp | 82 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()
|
D | SBModule.cpp | 560 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/ |
D | results_report_templates.py | 58 sect_name=table_name,
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSection.h | 35 lldb::SBSection FindSubSection(const char *sect_name);
|
D | SBModule.h | 111 lldb::SBSection FindSection(const char *sect_name);
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
D | ObjectFileWasm.cpp | 188 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/ |
D | SBSection.i | 61 FindSubSection (const char *sect_name);
|
D | SBModule.i | 188 FindSection (const char *sect_name);
|
/external/llvm-project/lldb/tools/compact-unwind/ |
D | compact-unwind-dumper.c | 222 char sect_name[17]; in scan_macho_load_commands() local 223 memcpy(§_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/ |
D | ObjectFileELF.cpp | 2066 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/ |
D | ObjectFilePECOFF.cpp | 750 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()
|
D | ObjectFilePECOFF.h | 286 static lldb::SectionType GetSectionType(llvm::StringRef sect_name,
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectTarget.cpp | 2756 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()
|