| /src/include/ | 
| a.out.h | 66 #include <nlist.h> 
 | 
| nlist.h | 1 /*	$NetBSD: nlist.h,v 1.14 2009/08/21 08:42:02 he Exp $	*/ 36  *	@(#)nlist.h	8.2 (Berkeley) 1/21/94
 46  * nlist.h can initialize nlist structures statically.
 48 struct nlist {  struct
 90 int nlist(const char *, struct nlist *);
 91 int __fdnlist(int, struct nlist *);		/* XXX for libkvm */
 
 | 
| link_aout.h | 44 #include <a.out.h>			/* for struct nlist */ 80  * Symbol description with size. This is simply an `nlist' with
 87 	struct nlist	nlist;  member in struct:nzlist
 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_des
 [all...]
 | 
| kvm.h | 48 #include <nlist.h> 79 int	  kvm_nlist(kvm_t *, struct nlist *);
 
 | 
| /src/tools/arm-elf2aout/ | 
| a.out.h | 66 #include <nlist.h> 
 | 
| nlist.h | 1 /*	$NetBSD: nlist.h,v 1.1 2018/12/31 13:35:16 christos Exp $	*/ 36  *	@(#)nlist.h	8.2 (Berkeley) 1/21/94
 46  * nlist.h can initialize nlist structures statically.
 48 struct nlist {  struct
 92 int nlist(const char *, struct nlist *);
 93 int __fdnlist(int, struct nlist *);		/* XXX for libkvm */
 
 | 
| /src/tools/m68k-elf2aout/ | 
| a.out.h | 66 #include <nlist.h> 
 | 
| nlist.h | 1 /*	$NetBSD: nlist.h,v 1.1 2011/07/16 15:52:02 tsutsui Exp $	*/ 36  *	@(#)nlist.h	8.2 (Berkeley) 1/21/94
 46  * nlist.h can initialize nlist structures statically.
 48 struct nlist {  struct
 92 int nlist(const char *, struct nlist *);
 93 int __fdnlist(int, struct nlist *);		/* XXX for libkvm */
 
 | 
| /src/lib/libc/gen/ | 
| nlist_private.h | 79 struct nlist; 82 int	__fdnlist_aout(int, struct nlist *);
 85 int	__fdnlist_coff(int, struct nlist *);
 88 int	__fdnlist_ecoff(int, struct nlist *);
 91 int	__fdnlist_elf32(int, struct nlist *);
 94 int	__fdnlist_elf64(int, struct nlist *);
 
 | 
| nlist.c | 1 /* $NetBSD: nlist.c,v 1.26 2024/10/21 07:08:41 skrll Exp $ */ 67 static char sccsid[] = "@(#)nlist.c	8.1 (Berkeley) 6/4/93";
 69 __RCSID("$NetBSD: nlist.c,v 1.26 2024/10/21 07:08:41 skrll Exp $");
 84 #include <nlist.h>
 88 __weak_alias(nlist,_nlist)
 95 	int	(*fdnlist)(int, struct nlist *);
 115 nlist(const char *name, struct nlist *list)  function in typeref:typename:int
 131 __fdnlist(int fd, struct nlist *list)
 
 | 
| nlist_aout.c | 67 static char sccsid[] = "@(#)nlist.c	8.1 (Berkeley) 6/4/93"; 86 struct nlist;
 94 __fdnlist_aout(int fd, struct nlist *list)
 96 	struct nlist *p, *s;
 101 	struct nlist nbuf[1024];
 
 | 
| nlist_coff.c | 53 #include <nlist.h> 82 __fdnlist_coff(int fd, struct nlist *list)
 84 	struct nlist *p;
 173 				 * Translate (roughly) from COFF to nlist
 
 | 
| nlist_ecoff.c | 53 #include <nlist.h> 65 __fdnlist_ecoff(int fd, struct nlist *list)
 67 	struct nlist *p;
 164 				 * Translate (roughly) from ECOFF to nlist
 
 | 
| /src/usr.sbin/crash/arch/ | 
| aarch64.c | 38 #include <nlist.h> 48 static struct nlist nl[] = {
 
 | 
| mips.c | 37 #include <nlist.h> 45 static struct nlist nl[] = {
 
 | 
| sparc.c | 40 #include <nlist.h> 48 static struct nlist nl[] = {
 
 | 
| generic.c | 42 #include <nlist.h> 
 | 
| powerpc.c | 49 static struct nlist nl[] = { 
 | 
| x86.c | 40 #include <nlist.h> 54 static struct nlist nl[] = {
 
 | 
| alpha.c | 38 #include <nlist.h> 
 | 
| /src/bin/ps/ | 
| Makefile | 5 SRCS=		fmt.c keyword.c nlist.c print.c ps.c 
 | 
| /src/usr.sbin/kvm_mkdb/ | 
| Makefile | 5 SRCS=	kvm_mkdb.c nlist.c nlist_aout.c nlist_coff.c nlist_ecoff.c \ 
 | 
| nlist_aout.c | 67 static char sccsid[] = "from: @(#)nlist.c	8.1 (Berkeley) 6/6/93"; 91 typedef struct nlist NLIST;
 112 	NLIST nbuf;
 175 	data.size = sizeof(NLIST);
 180 	nsyms = ebuf.a_syms / sizeof(struct nlist);
 182 		if (fread((char *)&nbuf, sizeof (NLIST), 1, fp) != 1) {
 234 			data.size = sizeof(NLIST);
 263 	struct nlist nl[2];
 268 	if (nlist(name, nl) != 0)
 [all...]
 | 
| /src/lib/libkvm/ | 
| kvm_getloadavg.c | 52 #include <nlist.h> 58 static struct nlist nl[] = {
 76 	struct nlist *p;
 
 | 
| /src/usr.bin/crunch/crunchide/ | 
| exec_aout.c | 54 struct nlist *symbase; 103     struct nlist *symp;
 145     symbase = (struct nlist *)		 (aoutdata + N_SYMOFF(*hdrp));
 150     nsyms    = hdrp->a_syms   / sizeof(struct nlist);
 
 |