Home | History | Annotate | Download | only in libdw

Lines Matching refs:attr

24 dwarf_formref (attr, return_offset)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_offset = *attr->valp;
41 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_offset = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
53 datap = attr->valp;