Searched refs:nlist (Results 51 - 75 of 144) sorted by relevance

123456

/freebsd-9.3-release/contrib/ntp/ntpsnmpd/
H A Dnetsnmp_daemonize.c100 #include <nlist.h>
/freebsd-9.3-release/contrib/ntp/util/
H A Dtickadj.c181 # include <nlist.h>
654 static struct nlist nl[] =
757 if (nlist(*kname, nl) >= 0)
764 "%s: nlist didn't find needed symbols from <%s>: %s\n",
786 for (i = 0; i < (sizeof(nl) / sizeof(struct nlist)); i++)
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_proto.c3052 int nlist, nl2; local
3093 nlist = 1;
3095 nlist++;
3096 endpoint_size = ALIGNED_SIZE(nlist * 2 * sizeof(*endpoint));
3097 peers_size = ALIGNED_SIZE(nlist * sizeof(*peers));
3098 indx_size = ALIGNED_SIZE(nlist * 2 * sizeof(*indx));
3114 nlist = nl2 = 0; /* none yet */
3196 peers[nlist].peer = peer;
3197 peers[nlist].error = peer->jitter;
3198 peers[nlist]
[all...]
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Daout_gnu.h222 struct nlist
227 struct nlist *n_next;
221 struct nlist struct
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_file.c43 * most other applications are interested only in open/close/read/nlist).
53 #include <nlist.h>
187 struct nlist nl[4], *p;
H A Dkvm_getswapinfo.c43 #include <nlist.h>
53 static struct nlist kvm_swap_nl[] = {
H A Dkvm_amd64.c56 #include <nlist.h>
150 struct nlist nl[2];
H A Dkvm_i386.c56 #include <nlist.h>
156 struct nlist nl[2];
/freebsd-9.3-release/usr.bin/systat/
H A Dmain.c51 #include <nlist.h>
275 nlisterr(struct nlist n_list[])
281 mvprintw(2, 10, "systat: nlist: can't find following symbols:");
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dippool.c35 # include <nlist.h>
655 struct nlist names[2] = { { "ip_pool_list" } , { "" } };
657 if (nlist(kernel, names) != 1)
683 struct nlist names[2] = { { "ipf_htables" } , { "" } };
685 if (nlist(kernel, names) != 1)
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Dsock.c55 #include <nlist.h>
149 struct nlist names[4] = {
167 n = nlist(KERNEL, names);
170 fprintf(stderr, "nlist(%#x) == %d\n", names, n);
/freebsd-9.3-release/usr.sbin/trpt/
H A Dtrpt.c77 #include <nlist.h>
84 struct nlist nl[3];
156 if (nlist(syst, nl) < 0 || !nl[0].n_value)
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dsolib-legacy.c29 /* nlist.h needs to be included before link.h on some older *BSD systems. */
30 #include <nlist.h>
H A Dinfptrace.c100 #include <a.out.h> /* For struct nlist */
323 /* Get kernel_u_addr using BSD-style nlist(). */
331 struct nlist names[2];
335 if (nlist ("/vmunix", names) == 0)
/freebsd-9.3-release/lib/libc/gen/
H A DMakefile.inc25 nlist.c nrand48.c opendir.c \
74 nice.3 nlist.3 pause.3 popen.3 \
/freebsd-9.3-release/sbin/ddb/
H A Dddb_capture.c56 static struct nlist namelist[] = {
/freebsd-9.3-release/lib/libmemstat/
H A Dmemstat_malloc.c37 #include <nlist.h>
45 static struct nlist namelist[] = {
H A Dmemstat_uma.c42 #include <nlist.h>
52 static struct nlist namelist[] = {
/freebsd-9.3-release/lib/libjail/
H A Djail.c200 int njp, nlist; local
205 nlist = 32;
206 jp = malloc(nlist * sizeof(*jp));
243 if (njp >= nlist) {
244 nlist *= 2;
245 jp = realloc(jp, nlist * sizeof(*jp));
/freebsd-9.3-release/contrib/gdb/
H A Dltmain.sh3644 # Discover the nlist of each of the dlfiles.
3645 nlist="$output_objdir/${outputname}.nm"
3647 $show "$rm $nlist ${nlist}S ${nlist}T"
3648 $run $rm "$nlist" "${nlist}S" "${nlist}T"
3670 test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
3676 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
[all...]
/freebsd-9.3-release/contrib/binutils/
H A Dltmain.sh1219 # Discover the nlist of each of the dlfiles.
1220 nlist="$output_objdir/${my_outputname}.nm"
1222 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
1241 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
1247 $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'"
1252 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
1253 eval '$MV "$nlist"
[all...]
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dconfig.c1543 struct wpa_ssid *prev, **nlist; local
1560 nlist = os_realloc(config->pssid,
1562 if (nlist == NULL)
1566 if (nlist[prio]->priority < ssid->priority)
1570 os_memmove(&nlist[prio + 1], &nlist[prio],
1573 nlist[prio] = ssid;
1575 config->pssid = nlist;
/freebsd-9.3-release/usr.bin/bluetooth/btsockstat/
H A Dbtsockstat.c48 #include <nlist.h>
78 static struct nlist nl[] = {
/freebsd-9.3-release/usr.sbin/pstat/
H A Dpstat.c69 #include <nlist.h>
94 static struct nlist nl[NNAMES];
/freebsd-9.3-release/contrib/bind9/
H A Dltmain.sh3287 # Discover the nlist of each of the dlfiles.
3288 nlist="$output_objdir/${my_outputname}.nm"
3290 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
3325 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
3332 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
3337 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
3338 eval '$MV "$nlist"
[all...]

Completed in 384 milliseconds

123456