Home
last modified time | relevance | path

Searched refs:GetAttributeValue (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp469 dw_offset_t DWARFDebugInfoEntry::GetAttributeValue( in GetAttributeValue() function in DWARFDebugInfoEntry
497 if (GetAttributeValue(cu, DW_AT_specification, form_value)) { in GetAttributeValue()
500 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
507 if (GetAttributeValue(cu, DW_AT_abstract_origin, form_value)) { in GetAttributeValue()
510 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
530 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsString()
543 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsUnsigned()
557 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsReference()
567 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsAddress()
583 if (GetAttributeValue(cu, DW_AT_high_pc, form_value, nullptr, in GetAttributeHighPC()
[all …]
H A DDWARFDebugInfoEntry.h57 GetAttributeValue(const DWARFUnit *cu, const dw_attr_t attr,
H A DDWARFDIE.cpp136 if (m_die->GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsReferenceDIE()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DXML.h79 std::string GetAttributeValue(const char *name,
/llvm-project-15.0.7/lldb/source/Host/common/
H A DXML.cpp133 std::string XMLNode::GetAttributeValue(const char *name, in GetAttributeValue() function in XMLNode
157 return llvm::to_integer(GetAttributeValue(name, ""), value, base); in GetAttributeValueAsUnsigned()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp230 return GetAttributeValue(name); in ResolveName()
250 PythonObject PythonObject::GetAttributeValue(llvm::StringRef attr) const { in GetAttributeValue() function in PythonObject
834 PythonObject im_self = GetAttributeValue("im_self"); in GetArgInfo()
840 PythonObject __call__ = GetAttributeValue("__call__"); in GetArgInfo()
845 PythonObject im_self = __callable__.GetAttributeValue("im_self"); in GetArgInfo()
H A DPythonDataObjects.h284 PythonObject GetAttributeValue(llvm::StringRef attribute) const;
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp4234 std::string href = node.GetAttributeValue("href"); in GetGDBServerRegisterInfoXMLAndProcess()
4275 std::string href = node.GetAttributeValue("href"); in GetGDBServerRegisterInfoXMLAndProcess()
4413 std::string main_lm = root_element.GetAttributeValue("main-lm"); in GetLoadedModuleList()
4501 std::string name = library.GetAttributeValue("name"); in GetLoadedModuleList()
4509 std::string address = section.GetAttributeValue("address"); in GetLoadedModuleList()
H A DGDBRemoteCommunicationClient.cpp1746 auto type = memory_node.GetAttributeValue("type", ""); in LoadQXferMemoryMap()
1771 auto propname = prop_node.GetAttributeValue("name", ""); in LoadQXferMemoryMap()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp570 auto numerator_attr = As<long long>(py_int.GetAttributeValue("numerator")); in TEST_F()