HomeSort by relevance Sort by last modified time
    Searched full:dw_attr_t (Results 1 - 9 of 9) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAttribute.h 19 DWARFAttribute(dw_attr_t attr, dw_form_t form) :
24 void set(dw_attr_t attr, dw_form_t form) { m_attr_form = (attr << 16) | form; }
25 void set_attr(dw_attr_t attr) { m_attr_form = (m_attr_form & 0x0000ffffu) | (attr << 16); }
27 dw_attr_t get_attr() const { return m_attr_form >> 16; }
29 void get(dw_attr_t& attr, dw_form_t& form) const
DWARFAbbreviationDeclaration.h 36 dw_attr_t GetAttrByIndex(uint32_t idx) const { return m_attributes.size() > idx ? m_attributes[idx].get_attr() : 0; }
38 bool GetAttrAndFormByIndex(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const
50 void GetAttrAndFormByIndexUnchecked(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const
65 uint32_t FindAttributeIndex(dw_attr_t attr) const;
DWARFDebugInfoEntry.h 66 void Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form);
69 dw_attr_t AttributeAtIndex(uint32_t i) const { return m_infos[i].attr; }
70 dw_attr_t FormAtIndex(uint32_t i) const { return m_infos[i].form; }
73 uint64_t FormValueAsUnsigned (SymbolFileDWARF* dwarf2Data, dw_attr_t attr, uint64_t fail_value) const;
74 uint32_t FindAttributeIndex(dw_attr_t attr) const;
75 bool ContainsAttribute(dw_attr_t attr) const;
76 bool RemoveAttribute(dw_attr_t attr);
85 dw_attr_t attr;
172 const dw_attr_t attr,
179 const dw_attr_t attr
    [all...]
DWARFAbbreviationDeclaration.cpp 52 dw_attr_t attr = data.GetULEB128(offset_ptr);
105 dw_attr_t attr;
155 dw_attr_t attr;
175 DWARFAbbreviationDeclaration::FindAttributeIndex(dw_attr_t attr) const
DWARFDebugInfoEntry.cpp 50 DWARFDebugInfoEntry::Attributes::FindAttributeIndex(dw_attr_t attr) const
64 DWARFDebugInfoEntry::Attributes::Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form)
71 DWARFDebugInfoEntry::Attributes::ContainsAttribute(dw_attr_t attr) const
77 DWARFDebugInfoEntry::Attributes::RemoveAttribute(dw_attr_t attr)
97 DWARFDebugInfoEntry::Attributes::FormValueAsUnsigned (SymbolFileDWARF* dwarf2Data, dw_attr_t attr, uint64_t fail_value) const
314 dw_attr_t attr;
599 // const dw_attr_t a_attr = a_attrs.AttributeAtIndex(i);
600 // const dw_attr_t b_attr = b_attrs.AttributeAtIndex(i);
775 dw_attr_t attr;
    [all...]
DWARFDebugPubnames.cpp 117 dw_attr_t attr = attributes.AttributeAtIndex(i);
SymbolFileDWARF.cpp     [all...]
DWARFCompileUnit.cpp 674 dw_attr_t attr = attributes.AttributeAtIndex(i);
    [all...]
  /external/lldb/include/lldb/Core/
dwarf.h 23 typedef uint16_t dw_attr_t; typedef

Completed in 329 milliseconds