| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | dbxread.c | 840 struct internal_nlist nlist; in dbx_next_symbol_text() local 846 INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd); in dbx_next_symbol_text() 851 return nlist.n_strx + stringtab_global + file_string_table_offset; in dbx_next_symbol_text() 876 set_namestring (struct objfile *objfile, const struct internal_nlist *nlist) in set_namestring() argument 880 if (nlist->n_strx + file_string_table_offset in set_namestring() 882 || nlist->n_strx + file_string_table_offset < nlist->n_strx) in set_namestring() 889 namestring = (nlist->n_strx + file_string_table_offset in set_namestring() 957 struct internal_nlist nlist; in read_dbx_symtab() local 1069 INTERNALIZE_SYMBOL (nlist, bufp, abfd); in read_dbx_symtab() 1083 switch (nlist.n_type) in read_dbx_symtab() [all …]
|
| /netbsd/src/lib/libc/gen/ |
| D | 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 *);
|
| D | nlist.c | 88 __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()
|
| D | nlist_aout.c | 86 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()
|
| /netbsd/src/include/ |
| D | link_aout.h | 87 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
|
| D | nlist.h | 48 struct nlist { struct 90 int nlist(const char *, struct nlist *); argument 91 int __fdnlist(int, struct nlist *); /* XXX for libkvm */
|
| /netbsd/src/tools/m68k-elf2aout/ |
| D | nlist.h | 48 struct nlist { struct 92 int nlist(const char *, struct nlist *); argument 93 int __fdnlist(int, struct nlist *); /* XXX for libkvm */
|
| /netbsd/src/external/cddl/osnet/dist/head/ |
| D | nlist.h | 36 struct nlist { struct 45 extern int nlist(const char *, struct nlist *); argument
|
| /netbsd/src/external/bsd/byacc/dist/test/ |
| D | err_inherit4.y | 29 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>) 30 %destructor { } <nlist> 41 } <nlist> 47 namelist * nlist; member
|
| D | btyacc_destroy1.y | 35 %type <nlist> declaration 36 %type <nlist> locnamelist 39 %type <nlist> namelist 56 namelist * nlist;
|
| D | btyacc_destroy3.y | 38 %type <nlist> declaration 39 %type <nlist> locnamelist 42 %type <nlist> namelist 59 namelist * nlist;
|
| D | btyacc_destroy2.y | 35 %type <nlist> declaration 36 %type <nlist> locnamelist 39 %type <nlist> namelist 56 namelist * nlist;
|
| D | err_inherit1.y | 28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>) 39 } <nlist> 45 namelist * nlist; member
|
| D | err_inherit5.y | 28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>) 39 } <nlist> 45 namelist * nlist; member
|
| D | err_inherit3.y | 28 %type <nlist> declaration(<id>) namelist(<cval>, <tval>) locnamelist(<tval>) 39 } <nlist> 45 namelist * nlist; member
|
| D | err_inherit2.y | 28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>) 39 } <nlist> 45 namelist * nlist; member
|
| D | inherit2.y | 28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>) 39 } <nlist> 45 namelist * nlist; member
|
| /netbsd/src/usr.bin/crunch/crunchide/ |
| D | exec_aout.c | 54 struct nlist *symbase; 103 struct nlist *symp; in hide_aout() 145 symbase = (struct nlist *) (aoutdata + N_SYMOFF(*hdrp)); in hide_aout() 150 nsyms = hdrp->a_syms / sizeof(struct nlist); in hide_aout()
|
| /netbsd/src/external/bsd/ntp/dist/ntpdate/ |
| D | ntpdate.c | 1045 u_int nlist; in clock_select() local 1066 nlist = 0; /* none yet */ in clock_select() 1114 for (i = 0; i < nlist; i++) in clock_select() 1117 for ( ; i < nlist; i++) { in clock_select() 1130 for (j = nlist; j > i; j--) in clock_select() 1139 if (nlist < NTP_MAXLIST) in clock_select() 1140 nlist++; in clock_select() 1148 for (i = 1; i < nlist; i++) in clock_select() 1152 nlist = i; in clock_select() 1164 if (0 == nlist) in clock_select() [all …]
|
| /netbsd/src/usr.sbin/kvm_mkdb/ |
| D | nlist_aout.c | 91 typedef struct nlist NLIST; 180 nsyms = ebuf.a_syms / sizeof(struct nlist); in create_knlist_aout() 263 struct nlist nl[2]; in get_kerntext() 268 if (nlist(name, nl) != 0) { in get_kerntext()
|
| /netbsd/src/external/bsd/ntp/dist/include/ |
| D | l_stdlib.h | 99 struct nlist; 100 extern int nlist (const char *, struct nlist *);
|
| /netbsd/src/external/bsd/ntp/dist/ntpd/ |
| D | ntp_proto.c | 3529 int nlist, nl2; in clock_select() local 3572 nlist = 1; in clock_select() 3574 nlist++; in clock_select() 3575 endpoint_size = ALIGNED_SIZE(nlist * 2 * sizeof(*endpoint)); in clock_select() 3576 peers_size = ALIGNED_SIZE(nlist * sizeof(*peers)); in clock_select() 3577 indx_size = ALIGNED_SIZE(nlist * 2 * sizeof(*indx)); in clock_select() 3593 nlist = nl2 = 0; /* none yet */ in clock_select() 3691 peers[nlist].peer = peer; in clock_select() 3692 peers[nlist].error = peer->jitter; in clock_select() 3693 peers[nlist].synch = f; in clock_select() [all …]
|
| /netbsd/src/external/bsd/libbind/dist/ |
| D | ltmain.sh | 4633 $show "$rm $nlist ${nlist}S ${nlist}T" 4634 $run $rm "$nlist" "${nlist}S" "${nlist}T" 4656 test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" 4662 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" 4666 $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' 4667 $run eval '$mv "$nlist"T "$nlist"' 4671 $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' 4672 $run eval '$mv "$nlist"T "$nlist"' 4679 …$run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbol… 4688 $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' [all …]
|
| /netbsd/src/external/bsd/iscsi/dist/buildaux/ |
| D | ltmain.sh | 4666 $show "$rm $nlist ${nlist}S ${nlist}T" 4667 $run $rm "$nlist" "${nlist}S" "${nlist}T" 4689 test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" 4695 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" 4699 $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' 4700 $run eval '$mv "$nlist"T "$nlist"' 4704 $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' 4705 $run eval '$mv "$nlist"T "$nlist"' 4712 …$run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbol… 4721 $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' [all …]
|
| /netbsd/src/usr.bin/mail/ |
| D | names.c | 425 gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype) in gexpand() argument 435 return nlist; in gexpand() 445 nlist = gexpand(nlist, ngh, metoo, ntype); in gexpand() 459 nlist = put(nlist, np); in gexpand() 462 return nlist; in gexpand()
|