Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/tools/nogrod/
Ddwarf_abbrev.h191 DwarfAbbrev(uint64_t code, uint64_t tag, bool has_children);
203 [[nodiscard]] bool has_children() const { return has_children_; } in has_children() function
Ddwarf_info.cc130 if (abbrev.has_children()) { in ReadOneDie()
259 uint8_t has_children = bs.ReadUint8(); in ReadAbbrev() local
261 DwarfAbbrev abbrev(code, entry_tag, has_children == DW_CHILDREN_yes); in ReadAbbrev()
Ddwarf_abbrev.cc1030 DwarfAbbrev::DwarfAbbrev(uint64_t code, uint64_t tag, bool has_children) in DwarfAbbrev() argument
1031 : code_(code), tag_(tag), has_children_(has_children) {} in DwarfAbbrev()