Home | History | Annotate | Download | only in libelf

Lines Matching refs:nl

60 nlist (const char *filename, struct nlist *nl)
177 while (nl->n_name != NULL && nl->n_name[0] != '\0')
183 search.str = nl->n_name;
184 found = nlist_fshash_find (table, nl->n_name, 0, &search);
189 nl->n_value = found->sym.st_value;
190 nl->n_scnum = found->sym.st_shndx;
191 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
193 nl->n_sclass = 0;
194 nl->n_numaux = 0;
199 nl->n_value = 0;
200 nl->n_scnum = 0;
201 nl->n_type = 0;
202 nl->n_sclass = 0;
203 nl->n_numaux = 0;
207 ++nl;
234 while (nl->n_name != NULL && nl->n_name[0] != '\0')
236 nl->n_value = 0;
237 nl->n_scnum = 0;
238 nl->n_type = 0;
239 nl->n_sclass = 0;
240 nl->n_numaux = 0;
243 ++nl;