Home | History | Annotate | Download | only in libdw

Lines Matching refs:attrp

60 dwarf_formstring (attrp)
61 Dwarf_Attribute *attrp;
64 if (attrp == NULL)
68 if (attrp->form == DW_FORM_string)
70 return (const char *) attrp->valp;
72 Dwarf *dbg = attrp->cu->dbg;
74 if (unlikely (attrp->form != DW_FORM_strp)
84 if (attrp->cu->offset_size == 8)
85 off = read_8ubyte_unaligned (dbg, attrp->valp);
87 off = read_4ubyte_unaligned (dbg, attrp->valp);