Searched refs:nlist (Results 1 - 25 of 173) sorted by relevance

1234567

/freebsd-10.1-release/cddl/contrib/opensolaris/head/
H A Dnlist.h35 struct nlist { struct
45 extern int nlist(const char *, struct nlist *);
47 extern int nlist();
/freebsd-10.1-release/include/
H A Dnlist.h34 * @(#)nlist.h 8.2 (Berkeley) 1/21/94
46 int nlist(const char *, struct nlist *);
H A Da.out.h43 #include <nlist.h>
/freebsd-10.1-release/usr.sbin/ngctl/
H A Dlist.c68 struct namelist *nlist; local
113 nlist = (struct namelist *) resp->data;
115 nlist->numnames, named_only ? "named " : "");
116 ninfo = nlist->nodeinfo;
121 while (nlist->numnames > 0) {
127 nlist->numnames--;
130 while (nlist->numnames > 0) {
138 nlist->numnames--;
H A Ddot.c66 struct namelist *nlist; local
111 nlist = (struct namelist *)nlresp->data;
116 for (i = 0; i < nlist->numnames; i++)
118 (uintmax_t)nlist->nodeinfo[i].id,
119 nlist->nodeinfo[i].name[0] != '\0' ?
120 nlist->nodeinfo[i].name : UNNAMED,
121 nlist->nodeinfo[i].type, (uintmax_t)nlist->nodeinfo[i].id);
126 for (i = 0; i < nlist->numnames; i++)
127 if (nlist
[all...]
/freebsd-10.1-release/bin/ps/
H A DMakefile5 SRCS= fmt.c keyword.c nlist.c print.c ps.c
/freebsd-10.1-release/contrib/byacc/test/btyacc/
H A Derr_inherit3.tab.h19 namelist * nlist; member in union:__anon752
H A Derr_inherit4.tab.h19 namelist * nlist; member in union:__anon757
H A Dinherit1.tab.h19 namelist * nlist; member in union:__anon772
H A Dinherit2.tab.h19 namelist * nlist; member in union:__anon777
/freebsd-10.1-release/usr.sbin/kgzip/
H A Daouthdr.c42 sizeof(struct nlist) * KGZ__STNUM, /* a_syms */
H A Daouthdr.h54 struct nlist st[KGZ__STNUM];
/freebsd-10.1-release/sys/sys/
H A Dlink_aout.h80 * Symbol description with size. This is simply an `nlist' with
87 struct nlist nlist; member in struct:nzlist
91 #define nz_un nlist.n_un
92 #define nz_strx nlist.n_un.n_strx
93 #define nz_name nlist.n_un.n_name
94 #define nz_type nlist.n_type
95 #define nz_value nlist.n_value
96 #define nz_desc nlist.n_desc
97 #define nz_other nlist
[all...]
/freebsd-10.1-release/contrib/byacc/test/
H A Derr_inherit4.y27 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
28 %destructor { } <nlist>
39 } <nlist>
45 namelist * nlist;
H A Derr_inherit1.y26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
37 } <nlist>
43 namelist * nlist;
H A Derr_inherit2.y26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
37 } <nlist>
43 namelist * nlist;
H A Derr_inherit3.y26 %type <nlist> declaration(<id>) namelist(<cval>, <tval>) locnamelist(<tval>)
37 } <nlist>
43 namelist * nlist;
H A Derr_inherit5.y26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
37 } <nlist>
43 namelist * nlist;
H A Dinherit2.y26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
37 } <nlist>
43 namelist * nlist;
H A Dinherit1.y28 %type <nlist> declaration namelist locnamelist
36 namelist * nlist;
/freebsd-10.1-release/lib/libc/gen/
H A Dnlist.c31 static char sccsid[] = "@(#)nlist.c 8.1 (Berkeley) 6/4/93";
58 int __fdnlist(int, struct nlist *);
59 int __aout_fdnlist(int, struct nlist *);
60 int __elf_fdnlist(int, struct nlist *);
63 nlist(name, list) function
65 struct nlist *list;
78 int (*fn)(int fd, struct nlist *list);
91 struct nlist *list;
109 struct nlist *list;
111 struct nlist *
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Ddelta68-nat.c27 #include <nlist.h>
67 struct nlist nl[2];
71 if (nlist ("/sysV68", nl) == 0 && nl[0].n_scnum != 0)
/freebsd-10.1-release/lib/libkvm/
H A Dkvm_getloadavg.c45 #include <nlist.h>
50 static struct nlist nl[] = {
68 struct nlist *p;
H A Dkvm_sparc.c53 #include <nlist.h>
95 struct nlist nlist[2]; local
134 * It's okay to do this nlist separately from the one kvm_getprocs()
139 nlist[0].n_name = "_pmap_stod";
140 nlist[1].n_name = 0;
141 if (kvm_nlist(kd, nlist) != 0) {
145 if (kvm_read(kd, (u_long)nlist[0].n_value,
/freebsd-10.1-release/usr.bin/ipcs/
H A Dipc.h33 /* Part of struct nlist symbols[] */
63 extern struct nlist symbols[];

Completed in 120 milliseconds

1234567