Lines Matching refs:note
85 _dl_process_property_note (struct link_map *l, const ElfW(Nhdr) *note, in _dl_process_property_note() argument
98 const ElfW(Addr) start = (ElfW(Addr)) note; in _dl_process_property_note()
105 while ((ElfW(Addr)) (note + 1) - start < size) in _dl_process_property_note()
108 if (note->n_namesz == 4 in _dl_process_property_note()
109 && note->n_type == NT_GNU_PROPERTY_TYPE_0 in _dl_process_property_note()
110 && memcmp (note + 1, "GNU", 4) == 0) in _dl_process_property_note()
121 if (note->n_descsz < 8 in _dl_process_property_note()
122 || (note->n_descsz % sizeof (ElfW(Addr))) != 0) in _dl_process_property_note()
126 unsigned char *ptr = (unsigned char *) (note + 1) + 4; in _dl_process_property_note()
127 unsigned char *ptr_end = ptr + note->n_descsz; in _dl_process_property_note()
192 note = ((const void *) note in _dl_process_property_note()
193 + ELF_NOTE_NEXT_OFFSET (note->n_namesz, note->n_descsz, in _dl_process_property_note()
212 const ElfW(Nhdr) *note = (const void *) (ph->p_vaddr + l->l_addr); in _dl_process_pt_note()
213 _dl_process_property_note (l, note, ph->p_memsz, ph->p_align); in _dl_process_pt_note()