Home
last modified time | relevance | path

Searched refs:nlist (Results 1 – 25 of 108) sorted by relevance

12345

/minix/lib/libc/gen/
H A Dnlist_private.h81 struct nlist;
84 int __fdnlist_aout(int, struct nlist *);
87 int __fdnlist_coff(int, struct nlist *);
90 int __fdnlist_ecoff(int, struct nlist *);
93 int __fdnlist_elf32(int, struct nlist *);
96 int __fdnlist_elf64(int, struct nlist *);
H A Dnlist.c88 __weak_alias(nlist,_nlist)
95 int (*fdnlist)(int, struct nlist *);
115 nlist(const char *name, struct nlist *list) in nlist() function
131 __fdnlist(int fd, struct nlist *list) in __fdnlist()
H A Dnlist_aout.c86 struct nlist;
94 __fdnlist_aout(int fd, struct nlist *list) in __fdnlist_aout()
96 struct nlist *p, *s; in __fdnlist_aout()
101 struct nlist nbuf[1024]; in __fdnlist_aout()
H A Dnlist_ecoff.c65 __fdnlist_ecoff(int fd, struct nlist *list) in __fdnlist_ecoff()
67 struct nlist *p; in __fdnlist_ecoff()
H A Dnlist_coff.c82 __fdnlist_coff(int fd, struct nlist *list) in __fdnlist_coff()
84 struct nlist *p; in __fdnlist_coff()
/minix/include/
H A Dlink_aout.h87 struct nlist nlist; member
89 #define nz_un nlist.n_un
90 #define nz_strx nlist.n_un.n_strx
91 #define nz_name nlist.n_un.n_name
92 #define nz_type nlist.n_type
93 #define nz_value nlist.n_value
94 #define nz_desc nlist.n_desc
95 #define nz_other nlist.n_other
H A Dnlist.h48 struct nlist { struct
90 int nlist(const char *, struct nlist *); argument
91 int __fdnlist(int, struct nlist *); /* XXX for libkvm */
/minix/external/bsd/byacc/dist/test/
H A Derr_inherit4.y29 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %destructor { } <nlist>
41 } <nlist>
47 namelist * nlist; member
H A Dbtyacc_destroy1.y35 %type <nlist> declaration
36 %type <nlist> locnamelist
39 %type <nlist> namelist
56 namelist * nlist;
H A Dbtyacc_destroy2.y35 %type <nlist> declaration
36 %type <nlist> locnamelist
39 %type <nlist> namelist
56 namelist * nlist;
H A Dbtyacc_destroy3.y38 %type <nlist> declaration
39 %type <nlist> locnamelist
42 %type <nlist> namelist
59 namelist * nlist;
H A Derr_inherit1.y28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
39 } <nlist>
45 namelist * nlist; member
H A Dinherit2.y28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
39 } <nlist>
45 namelist * nlist; member
H A Derr_inherit2.y28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
39 } <nlist>
45 namelist * nlist; member
H A Derr_inherit5.y28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
39 } <nlist>
45 namelist * nlist; member
H A Derr_inherit3.y28 %type <nlist> declaration(<id>) namelist(<cval>, <tval>) locnamelist(<tval>)
39 } <nlist>
45 namelist * nlist; member
H A Dinherit1.y30 %type <nlist> declaration namelist locnamelist
38 namelist * nlist; member
/minix/minix/commands/swifi/
H A Dread_nlist.c15 struct nlist **nlistp) in get_syms()
20 struct nlist *nlp; in get_syms()
32 size = sizeof(struct nlist) * nsyms; in get_syms()
59 int read_nlist(const char *filename, struct nlist **nlist_table) in read_nlist()
/minix/external/bsd/blacklist/bin/
H A Dblacklistd.c337 uniqueadd(struct conf ***listp, size_t *nlist, size_t *mlist, struct conf *c) in uniqueadd() argument
343 for (size_t i = 0; i < *nlist; i++) { in uniqueadd()
347 if (*nlist == *mlist) { in uniqueadd()
354 list[(*nlist)++] = c; in uniqueadd()
361 size_t nlist, mlist; in rules_flush() local
364 mlist = nlist = 0; in rules_flush()
366 uniqueadd(&list, &nlist, &mlist, &rconf.cs_c[i]); in rules_flush()
368 uniqueadd(&list, &nlist, &mlist, &lconf.cs_c[i]); in rules_flush()
370 for (size_t i = 0; i < nlist; i++) in rules_flush()
/minix/lib/libkvm/
H A Dkvm_getloadavg.c58 static struct nlist nl[] = {
76 struct nlist *p; in kvm_getloadavg()
/minix/external/bsd/byacc/dist/test/btyacc/
H A Dinherit2.tab.c152 namelist * nlist; member
433 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
445 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
457 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
1136 { yyval.nlist = yystack.l_mark[0].nlist; } in YYPARSE_DECL()
1144 { yyval.nlist = yystack.l_mark[0].nlist; } in YYPARSE_DECL()
1164 …{ yyval.nlist->s = mksymbol(yystack.l_mark[-2].tval, yystack.l_mark[-3].cval, yystack.l_mark[0].id… in YYPARSE_DECL()
1165 yyval.nlist->next = yystack.l_mark[-1].nlist; in YYPARSE_DECL()
1170 …{ yyval.nlist->s = mksymbol(yystack.l_mark[-1].tval, yystack.l_mark[-2].cval, yystack.l_mark[0].id… in YYPARSE_DECL()
1171 yyval.nlist->next = NULL; in YYPARSE_DECL()
[all …]
H A Derr_inherit3.tab.c152 namelist * nlist; member
433 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
445 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
457 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
1136 { yyval.nlist = yystack.l_mark[0].nlist; } in YYPARSE_DECL()
1144 { yyval.nlist = yystack.l_mark[0].nlist; } in YYPARSE_DECL()
1168 …{ yyval.nlist->s = mksymbol(yystack.l_mark[-5].tval, yystack.l_mark[-5].cval, yystack.l_mark[0].id… in YYPARSE_DECL()
1169 yyval.nlist->next = yystack.l_mark[-1].nlist; in YYPARSE_DECL()
1174 { yyval.nlist->s = mksymbol(yystack.l_mark[-3], yystack.l_mark[-3], yystack.l_mark[0].id); in YYPARSE_DECL()
1175 yyval.nlist->next = NULL; in YYPARSE_DECL()
[all …]
H A Dbtyacc_destroy3.tab.c157 namelist * nlist; member
500 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
1172 { yyval.nlist = yystack.l_mark[-5].nlist; } in YYPARSE_DECL()
1177 { yyval.nlist = yystack.l_mark[-3].nlist; } in YYPARSE_DECL()
1202 …{ yyval.nlist->s = mksymbol(yystack.l_mark[-2].tval, yystack.l_mark[-2].cval, yystack.l_mark[0].id… in YYPARSE_DECL()
1203 yyval.nlist->next = yystack.l_mark[-1].nlist; in YYPARSE_DECL()
1209 { yyval.nlist->s = mksymbol(0, 0, yystack.l_mark[0].id); in YYPARSE_DECL()
1210 yyval.nlist->next = NULL; in YYPARSE_DECL()
1216 { yyval.nlist = yystack.l_mark[-5].nlist; } in YYPARSE_DECL()
H A Dbtyacc_destroy1.tab.c157 namelist * nlist; member
500 namelist *p = (*val).nlist; in YYDESTRUCT_DECL()
1172 { yyval.nlist = yystack.l_mark[-5].nlist; } in YYPARSE_DECL()
1177 { yyval.nlist = yystack.l_mark[-3].nlist; } in YYPARSE_DECL()
1202 …{ yyval.nlist->s = mksymbol(yystack.l_mark[-2].tval, yystack.l_mark[-2].cval, yystack.l_mark[0].id… in YYPARSE_DECL()
1203 yyval.nlist->next = yystack.l_mark[-1].nlist; in YYPARSE_DECL()
1209 { yyval.nlist->s = mksymbol(0, 0, yystack.l_mark[0].id); in YYPARSE_DECL()
1210 yyval.nlist->next = NULL; in YYPARSE_DECL()
1216 { yyval.nlist = yystack.l_mark[-5].nlist; } in YYPARSE_DECL()
/minix/bin/ps/
H A Dnlist.c88 struct nlist psnl[] = {
198 nlisterr(struct nlist nl[]) in nlisterr()

12345