Home
last modified time | relevance | path

Searched refs:DwarfStrXAttribute (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/binary_translation/tools/nogrod/
Ddwarf_abbrev.h76 class DwarfStrXAttribute : public DwarfAttribute {
78 DwarfStrXAttribute(uint32_t name, uint64_t index) : DwarfAttribute{name}, index_{index} {} in DwarfStrXAttribute() function
Ddwarf_abbrev.cc809 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadLeb128()); in ReadAttribute()
811 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadUint8()); in ReadAttribute()
813 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadUint16()); in ReadAttribute()
815 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadUint24()); in ReadAttribute()
817 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadUint32()); in ReadAttribute()
980 std::optional<std::string> DwarfStrXAttribute::StringValue() const { in StringValue()
986 void DwarfStrXAttribute::Resolve(DwarfContext* context) { in Resolve()