Searched refs:sect_name (Results 1 - 11 of 11) sorted by relevance

/external/lldb/include/lldb/API/
H A DSBSection.h41 FindSubSection (const char *sect_name);
H A DSBModule.h101 FindSection (const char *sect_name);
/external/lldb/scripts/Python/interface/
H A DSBSection.i60 FindSubSection (const char *sect_name);
H A DSBModule.i158 FindSection (const char *sect_name);
/external/lldb/source/API/
H A DSBSection.cpp88 SBSection::FindSubSection (const char *sect_name) argument
91 if (sect_name)
96 ConstString const_sect_name(sect_name);
H A DSBModule.cpp581 SBModule::FindSection (const char *sect_name) argument
586 if (sect_name && module_sp)
593 ConstString const_sect_name(sect_name);
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1112 const ConstString &sect_name = symbol_section_sp->GetName(); local
1113 if (sect_name == text_section_name ||
1114 sect_name == init_section_name ||
1115 sect_name == fini_section_name ||
1116 sect_name == ctors_section_name ||
1117 sect_name == dtors_section_name)
1121 else if (sect_name == data_section_name ||
1122 sect_name == data2_section_name ||
1123 sect_name == rodata_section_name ||
1124 sect_name
1142 const ConstString &sect_name = symbol_section_sp->GetName(); local
[all...]
/external/valgrind/main/drd/
H A Ddrd_error.c225 HChar sect_name[64]; local
228 sect_kind = VG_(DebugInfo_sect_kind)(sect_name, sizeof(sect_name),
233 sect_name, auxwhat_suffix);
/external/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp491 ObjectFilePECOFF::GetSectionName(std::string& sect_name, const section_header_t& sect) argument
500 sect_name = name;
506 sect_name = sect.name;
624 std::string sect_name; local
625 GetSectionName (sect_name, m_sect_headers[idx]);
626 ConstString const_sect_name (sect_name.c_str());
H A DObjectFilePECOFF.h235 bool GetSectionName(std::string& sect_name, const section_header_t& sect);
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp2849 const char *sect_name = args.GetArgumentAtIndex(i); local
2851 if (sect_name && load_addr_cstr)
2853 ConstString const_sect_name(sect_name);
2863 result.AppendErrorWithFormat ("thread specific sections are not yet supported (section '%s')\n", sect_name);
2871 result.AppendMessageWithFormat("section '%s' loaded at 0x%" PRIx64 "\n", sect_name, load_addr);
2876 result.AppendErrorWithFormat ("no section found that matches the section name '%s'\n", sect_name);
2890 if (sect_name)

Completed in 2179 milliseconds