Symbol: nlist
bin/ps/extern.h
69
void nlisterr(struct nlist *);
bin/ps/nlist.c
223
nlisterr(struct nlist nl[])
bin/ps/nlist.c
88
struct nlist psnl[] = {
include/kvm.h
79
int kvm_nlist(kvm_t *, struct nlist *);
include/link_aout.h
87
struct nlist nlist;
include/link_aout.h
89
#define nz_un nlist.n_un
include/link_aout.h
90
#define nz_strx nlist.n_un.n_strx
include/link_aout.h
91
#define nz_name nlist.n_un.n_name
include/link_aout.h
92
#define nz_type nlist.n_type
include/link_aout.h
93
#define nz_value nlist.n_value
include/link_aout.h
94
#define nz_desc nlist.n_desc
include/link_aout.h
95
#define nz_other nlist.n_other
include/nlist.h
90
int nlist(const char *, struct nlist *);
include/nlist.h
91
int __fdnlist(int, struct nlist *); /* XXX for libkvm */
lib/libc/gen/nlist.c
115
nlist(const char *name, struct nlist *list)
lib/libc/gen/nlist.c
131
__fdnlist(int fd, struct nlist *list)
lib/libc/gen/nlist.c
88
__weak_alias(nlist,_nlist)
lib/libc/gen/nlist.c
95
int (*fdnlist)(int, struct nlist *);
lib/libc/gen/nlist_aout.c
102
struct nlist nbuf[1024];
lib/libc/gen/nlist_aout.c
87
struct nlist;
lib/libc/gen/nlist_aout.c
95
__fdnlist_aout(int fd, struct nlist *list)
lib/libc/gen/nlist_aout.c
97
struct nlist *p, *s;
lib/libc/gen/nlist_coff.c
84
__fdnlist_coff(int fd, struct nlist *list)
lib/libc/gen/nlist_coff.c
86
struct nlist *p;
lib/libc/gen/nlist_ecoff.c
66
__fdnlist_ecoff(int fd, struct nlist *list)
lib/libc/gen/nlist_ecoff.c
68
struct nlist *p;
lib/libc/gen/nlist_elf32.c
77
ELFNAMEEND(__fdnlist)(int fd, struct nlist *list)
lib/libc/gen/nlist_elf32.c
94
struct nlist *p;
lib/libc/gen/nlist_private.h
79
struct nlist;
lib/libc/gen/nlist_private.h
82
int __fdnlist_aout(int, struct nlist *);
lib/libc/gen/nlist_private.h
85
int __fdnlist_coff(int, struct nlist *);
lib/libc/gen/nlist_private.h
88
int __fdnlist_ecoff(int, struct nlist *);
lib/libc/gen/nlist_private.h
91
int __fdnlist_elf32(int, struct nlist *);
lib/libc/gen/nlist_private.h
94
int __fdnlist_elf64(int, struct nlist *);
lib/libkvm/kvm.c
797
kvm_nlist(kvm_t *kd, struct nlist *nl)
lib/libkvm/kvm.c
815
struct nlist nl[2];
lib/libkvm/kvm_file.c
155
struct nlist nl[3], *p;
lib/libkvm/kvm_getloadavg.c
58
static struct nlist nl[] = {
lib/libkvm/kvm_getloadavg.c
76
struct nlist *p;
lib/libkvm/kvm_proc.c
832
struct nlist nl[4], *p;
lib/libkvm/kvm_vax.c
80
struct nlist nl[2];
sbin/dmesg/dmesg.c
65
static struct nlist nl[] = {
sbin/savecore/savecore.c
136
static struct nlist dump_nl[] = { /* Name list for dumped system. */
sbin/savecore/savecore.c
97
static struct nlist current_nl[] = { /* Namelist for currently running system. */
sys/arch/alpha/include/db_machdep.h
219
typedef struct nlist db_alpha_nlist;
sys/arch/amiga/stand/binpatch/binpatch.c
204
struct nlist nl[2];
sys/arch/amiga/stand/binpatch/binpatch.c
227
if (nlist(fname, nl) != 0) {
sys/arch/atari/stand/binpatch/binpatch.c
118
struct nlist nl[2];
sys/arch/atari/stand/installboot/installboot.c
192
struct nlist kbv[] = {
sys/arch/m68k/m68k/db_trace.c
174
static struct nlist * trampsym = 0;
sys/arch/m68k/m68k/db_trace.c
175
static struct nlist * funcsym = 0;
sys/arch/mvme68k/stand/installboot/installboot.c
187
if (nlist(fname, nl) != 0) {
sys/arch/mvme68k/stand/installboot/installboot.c
55
struct nlist nl[] = {
sys/arch/pmax/stand/smallnet/setnetimage/setnetimage.c
105
if (nlist(bootfile, nl) != 0)
sys/arch/pmax/stand/smallnet/setnetimage/setnetimage.c
50
struct nlist nl[] = {
sys/arch/pmax/stand/smallnet/setnetimage/setnetimage.c
63
#define X_NSYMS ((sizeof(nl) / sizeof(struct nlist)) - 1)
sys/dev/pci/radeonfb.c
4531
radeonfb_hasres(struct videomode *list, int nlist, int x, int y)
sys/dev/pci/radeonfb.c
4535
for (i = 0; i < nlist; i++) {
tools/arm-elf2aout/nlist.h
92
int nlist(const char *, struct nlist *);
tools/arm-elf2aout/nlist.h
93
int __fdnlist(int, struct nlist *); /* XXX for libkvm */
tools/m68k-elf2aout/nlist.h
92
int nlist(const char *, struct nlist *);
tools/m68k-elf2aout/nlist.h
93
int __fdnlist(int, struct nlist *); /* XXX for libkvm */
usr.bin/crunch/crunchide/exec_aout.c
103
struct nlist *symp;
usr.bin/crunch/crunchide/exec_aout.c
145
symbase = (struct nlist *) (aoutdata + N_SYMOFF(*hdrp));
usr.bin/crunch/crunchide/exec_aout.c
150
nsyms = hdrp->a_syms / sizeof(struct nlist);
usr.bin/crunch/crunchide/exec_aout.c
54
struct nlist *symbase;
usr.bin/elf2aout/elf2aout.c
381
aex.a_syms = (sizeof(struct nlist) *
usr.bin/elf2aout/elf2aout.c
460
struct nlist outbuf[64];
usr.bin/elf2aout/elf2aout.c
557
if ((i = write(out, outbuf, (size_t)cur * sizeof(struct nlist)))
usr.bin/elf2aout/elf2aout.c
558
!= cur * (ssize_t)sizeof(struct nlist))
usr.bin/fstat/misc.c
315
for (struct nlist *l = nl; l->n_name != NULL; l++) {
usr.bin/fstat/misc.c
73
static struct nlist nl[] = {
usr.bin/mail/names.c
425
gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype)
usr.bin/mail/names.c
435
return nlist;
usr.bin/mail/names.c
445
nlist = gexpand(nlist, ngh, metoo, ntype);
usr.bin/mail/names.c
459
nlist = put(nlist, np);
usr.bin/mail/names.c
462
return nlist;
usr.bin/mklocale/yacc.y
379
rune_list *nlist = list->next;
usr.bin/mklocale/yacc.y
381
list = nlist;
usr.bin/mklocale/yacc.y
391
rune_list *nlist = list->next;
usr.bin/mklocale/yacc.y
408
list = nlist;
usr.bin/netstat/main.c
102
struct nlist nl[] = {
usr.bin/netstat/vtw.c
158
struct nlist nl[2];
usr.bin/nfsstat/nfsstat.c
71
static struct nlist nl[] = {
usr.bin/pmap/main.c
66
struct nlist ksyms[] = {
usr.bin/pmap/main.c
82
struct nlist kmaps[] = {
usr.bin/rpcinfo/rpcinfo.c
124
struct netidlist *nlist;
usr.bin/rpcinfo/rpcinfo.c
666
for (nl = rs->nlist; nl; nl = nl->next)
usr.bin/rpcinfo/rpcinfo.c
675
nl->next = rs->nlist;
usr.bin/rpcinfo/rpcinfo.c
676
rs->nlist = nl;
usr.bin/rpcinfo/rpcinfo.c
832
rs->nlist = NULL;
usr.bin/rpcinfo/rpcinfo.c
858
for (nl = rs->nlist; nl; nl = nl->next) {
usr.bin/systat/extern.h
176
void nlisterr(struct nlist []) __dead;
usr.bin/systat/main.c
409
nlisterr(struct nlist name_list[])
usr.bin/systat/netstat.c
157
static struct nlist namelist[] = {
usr.bin/systat/vmstat.c
107
static struct nlist namelist[] = {
usr.bin/vmstat/vmstat.c
154
struct nlist namelist[] =
usr.bin/vmstat/vmstat.c
177
struct nlist timenl[] =
usr.bin/vmstat/vmstat.c
192
struct nlist intrnl[] =
usr.bin/vmstat/vmstat.c
210
struct nlist hashnl[] =
usr.bin/vmstat/vmstat.c
2154
kreadc(struct nlist *nl, int nlx, void *addr, size_t size)
usr.bin/vmstat/vmstat.c
2171
kread(struct nlist *nl, int nlx, void *addr, size_t size)
usr.bin/vmstat/vmstat.c
235
struct nlist histnl[] =
usr.bin/vmstat/vmstat.c
305
void kread(struct nlist *, int, void *, size_t);
usr.bin/vmstat/vmstat.c
306
int kreadc(struct nlist *, int, void *, size_t);
usr.sbin/crash/arch/aarch64.c
48
static struct nlist nl[] = {
usr.sbin/crash/arch/mips.c
45
static struct nlist nl[] = {
usr.sbin/crash/arch/powerpc.c
49
static struct nlist nl[] = {
usr.sbin/crash/arch/sparc.c
48
static struct nlist nl[] = {
usr.sbin/crash/arch/x86.c
54
static struct nlist nl[] = {
usr.sbin/crash/crash.c
75
static struct nlist nl[] = {
usr.sbin/kgmon/kgmon.c
62
static struct nlist nl[] = {
usr.sbin/kvm_mkdb/nlist_aout.c
180
nsyms = ebuf.a_syms / sizeof(struct nlist);
usr.sbin/kvm_mkdb/nlist_aout.c
263
struct nlist nl[2];
usr.sbin/kvm_mkdb/nlist_aout.c
268
if (nlist(name, nl) != 0) {
usr.sbin/kvm_mkdb/nlist_aout.c
91
typedef struct nlist NLIST;
usr.sbin/kvm_mkdb/nlist_coff.c
63
typedef struct nlist NLIST;
usr.sbin/kvm_mkdb/nlist_coff.c
87
struct nlist nbuf;
usr.sbin/kvm_mkdb/nlist_ecoff.c
63
typedef struct nlist NLIST;
usr.sbin/kvm_mkdb/nlist_ecoff.c
88
struct nlist nbuf;
usr.sbin/kvm_mkdb/nlist_elf32.c
76
typedef struct nlist NLIST;
usr.sbin/kvm_mkdb/nlist_elf32.c
98
struct nlist nbuf;
usr.sbin/mdsetimage/bin_nlist.c
96
struct nlist nl[3];
usr.sbin/pstat/pstat.c
87
struct nlist nl[] = {
usr.sbin/trpt/trpt.c
125
static struct nlist nl[] = {