Searched defs:dies (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnames.cpp93 DWARFDIECollection dies; local
94 const size_t die_count = cu->AppendDIEsWithTag (DW_TAG_subprogram, dies) +
95 cu->AppendDIEsWithTag (DW_TAG_variable, dies);
103 const DWARFDebugInfoEntry *die = dies.GetDIEPtrAtIndex(die_idx);
225 DWARFDIECollection dies; local
226 const size_t die_count = cu->AppendDIEsWithTag (DW_TAG_base_type, dies);
233 const DWARFDebugInfoEntry *die = dies.GetDIEPtrAtIndex(die_idx);
H A DDWARFCompileUnit.cpp389 // is accurate. If the DIEs weren't parsed, then we don't want all dies for
566 DWARFCompileUnit::AppendDIEsWithTag (const dw_tag_t tag, DWARFDIECollection& dies, uint32_t depth) const argument
568 size_t old_size = dies.Size();
574 dies.Append (&(*pos));
578 return dies.Size() - old_size;
/external/elfutils/0.153/src/
H A Dreadelf.c5828 Dwarf_Die *dies = (Dwarf_Die *) xmalloc (maxdies * sizeof (Dwarf_Die)); local
5883 (dbg, offset, &dies[level]) == NULL))
5894 offset = dwarf_dieoffset (&dies[level]);
5903 int tag = dwarf_tag (&dies[level]);
5920 (void) dwarf_getattrs (&dies[level], attr_callback, &args, 0);
5924 dies = (Dwarf_Die *) xrealloc (dies,
5928 int res = dwarf_child (&dies[level], &dies[level + 1]);
5931 while ((res = dwarf_siblingof (&dies[leve
[all...]

Completed in 212 milliseconds