Home | History | Annotate | Download | only in libelf

Lines Matching refs:data

61 gelf_getnote (data, offset, result, name_offset, desc_offset)
62 Elf_Data *data;
68 if (data == NULL)
71 if (unlikely (data->d_type != ELF_T_NHDR))
82 rwlock_rdlock (((Elf_Data_Scn *) data)->s->elf->lock);
84 /* The data is already in the correct form. Just make sure the
86 if (unlikely (offset + sizeof (GElf_Nhdr) > data->d_size))
93 const GElf_Nhdr *n = data->d_buf + offset;
99 if (unlikely (data->d_size - offset < namesz))
105 if (unlikely (data->d_size - offset < descsz))
116 rwlock_unlock (((Elf_Data_Scn *) data)->s->elf->lock);