Home | History | Annotate | Download | only in libelf

Lines Matching refs:nl

81 nlist (const char *filename, struct nlist *nl)
194 while (nl->n_name != NULL && nl->n_name[0] != '\0')
200 search.str = nl->n_name;
201 found = nlist_fshash_find (table, nl->n_name, 0, &search);
206 nl->n_value = found->sym.st_value;
207 nl->n_scnum = found->sym.st_shndx;
208 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
210 nl->n_sclass = 0;
211 nl->n_numaux = 0;
216 nl->n_value = 0;
217 nl->n_scnum = 0;
218 nl->n_type = 0;
219 nl->n_sclass = 0;
220 nl->n_numaux = 0;
224 ++nl;
251 while (nl->n_name != NULL && nl->n_name[0] != '\0')
253 nl->n_value = 0;
254 nl->n_scnum = 0;
255 nl->n_type = 0;
256 nl->n_sclass = 0;
257 nl->n_numaux = 0;
260 ++nl;