Home | History | Annotate | Download | only in libdw

Lines Matching refs:attr

60 dwarf_formblock (attr, return_block)
61 Dwarf_Attribute *attr;
64 if (attr == NULL)
69 switch (attr->form)
72 return_block->length = *(uint8_t *) attr->valp;
73 return_block->data = attr->valp + 1;
77 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
78 return_block->data = attr->valp + 2;
82 return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
83 return_block->data = attr->valp + 4;
87 datap = attr->valp;
98 > ((unsigned char *) attr->cu->dbg->sectiondata[IDX_debug_info]->d_buf
99 + attr->cu->dbg->sectiondata[IDX_debug_info]->d_size))