Home
last modified time | relevance | path

Searched refs:m_infos (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.h67 const DWARFCompileUnit * CompileUnitAtIndex(uint32_t i) const { return m_infos[i].cu; } in CompileUnitAtIndex()
68 dw_offset_t DIEOffsetAtIndex(uint32_t i) const { return m_infos[i].die_offset; } in DIEOffsetAtIndex()
69 dw_attr_t AttributeAtIndex(uint32_t i) const { return m_infos[i].attr; } in AttributeAtIndex()
70 dw_attr_t FormAtIndex(uint32_t i) const { return m_infos[i].form; } in FormAtIndex()
77 void Clear() { m_infos.clear(); } in Clear()
78 size_t Size() const { return m_infos.size(); } in Size()
90 collection m_infos; variable
DDWARFDebugInfoEntry.cpp40 m_infos() in Attributes()
52 collection::const_iterator end = m_infos.end(); in FindAttributeIndex()
53 collection::const_iterator beg = m_infos.begin(); in FindAttributeIndex()
67 m_infos.push_back(info); in Append()
82 m_infos.erase(m_infos.begin() + attr_index); in RemoveAttribute()
/external/lldb/include/lldb/Target/
DProcess.h1074 m_infos() in ProcessInstanceInfoList()
1081 m_infos.clear(); in Clear()
1087 return m_infos.size(); in GetSize()
1093 m_infos.push_back (info); in Append()
1099 if (idx < m_infos.size()) in GetProcessNameAtIndex()
1100 return m_infos[idx].GetName(); in GetProcessNameAtIndex()
1107 if (idx < m_infos.size()) in GetProcessNameLengthAtIndex()
1108 return m_infos[idx].GetNameLength(); in GetProcessNameLengthAtIndex()
1115 if (idx < m_infos.size()) in GetProcessIDAtIndex()
1116 return m_infos[idx].GetProcessID(); in GetProcessIDAtIndex()
[all …]