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

1234

/src/include/
H A Da.out.h66 #include <nlist.h>
H A Dnlist.h1 /* $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 */
H A Dlink_aout.h44 #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
[all...]
H A Dkvm.h48 #include <nlist.h>
79 int kvm_nlist(kvm_t *, struct nlist *);
/src/tools/arm-elf2aout/
H A Da.out.h66 #include <nlist.h>
H A Dnlist.h1 /* $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/
H A Da.out.h66 #include <nlist.h>
H A Dnlist.h1 /* $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/
H A Dnlist_private.h79 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 *);
H A Dnlist.c1 /* $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)
H A Dnlist_aout.c67 static char sccsid[] = "@(#)nlist.c 8.1 (Berkeley) 6/4/93";
87 struct nlist;
95 __fdnlist_aout(int fd, struct nlist *list)
97 struct nlist *p, *s;
102 struct nlist nbuf[1024];
H A Dnlist_coff.c55 #include <nlist.h>
84 __fdnlist_coff(int fd, struct nlist *list)
86 struct nlist *p;
175 * Translate (roughly) from COFF to nlist
H A Dnlist_ecoff.c54 #include <nlist.h>
66 __fdnlist_ecoff(int fd, struct nlist *list)
68 struct nlist *p;
165 * Translate (roughly) from ECOFF to nlist
/src/usr.sbin/crash/arch/
H A Daarch64.c38 #include <nlist.h>
48 static struct nlist nl[] = {
H A Dmips.c37 #include <nlist.h>
45 static struct nlist nl[] = {
H A Dsparc.c40 #include <nlist.h>
48 static struct nlist nl[] = {
H A Dgeneric.c42 #include <nlist.h>
H A Dpowerpc.c49 static struct nlist nl[] = {
H A Dx86.c40 #include <nlist.h>
54 static struct nlist nl[] = {
H A Dalpha.c38 #include <nlist.h>
/src/bin/ps/
H A DMakefile5 SRCS= fmt.c keyword.c nlist.c print.c ps.c
/src/usr.sbin/kvm_mkdb/
H A DMakefile5 SRCS= kvm_mkdb.c nlist.c nlist_aout.c nlist_coff.c nlist_ecoff.c \
H A Dnlist_aout.c67 static char sccsid[] = "from: @(#)nlist.c 8.1 (Berkeley) 6/6/93";
91 typedef struct nlist NLIST;
180 nsyms = ebuf.a_syms / sizeof(struct nlist);
263 struct nlist nl[2];
268 if (nlist(name, nl) != 0) {
/src/lib/libkvm/
H A Dkvm_getloadavg.c52 #include <nlist.h>
58 static struct nlist nl[] = {
76 struct nlist *p;
/src/usr.bin/crunch/crunchide/
H A Dexec_aout.c54 struct nlist *symbase;
103 struct nlist *symp;
145 symbase = (struct nlist *) (aoutdata + N_SYMOFF(*hdrp));
150 nsyms = hdrp->a_syms / sizeof(struct nlist);

Completed in 35 milliseconds

1234