HomeSort by: relevance | last modified time | path
    Searched refs:ans (Results 1 - 23 of 23) sorted by relevancy

  /src/games/wtf/
wtf 78 ans="$(fgrep -h "$target" $acronyms 2>/dev/null \
80 if [ -n "$ans" ] ; then
81 echo "$target: $ans"
86 ans="$(whatis "$i" 2>/dev/null)"
88 echo "$ans" | sort -u
93 ans="$(pkg_info -qc "$i" 2> /dev/null)"
95 echo "$i: $ans"
100 ans="$(pkg info -qI "$i" 2> /dev/null)"
102 echo "$i: $ans"
109 ans="$(make help topic="$i")
    [all...]
  /src/tests/rump/rumpkern/
t_modcmd.c 65 struct sysctlnode q, ans[256]; local in function:disable_autoload
73 alen = sizeof(ans);
78 if (rump_sys___sysctl(mib, 2, ans, &alen, &q, sizeof(q)) == -1)
81 for (i = 0; i < __arraycount(ans); i++)
82 if (strcmp("module", ans[i].sysctl_name) == 0)
84 if (i == __arraycount(ans)) {
89 mib[1] = ans[i].sysctl_num;
92 if (rump_sys___sysctl(mib, 3, ans, &alen, &q, sizeof(q)) == -1)
95 for (i = 0; i < __arraycount(ans); i++)
96 if (strcmp("autoload", ans[i].sysctl_name) == 0
    [all...]
  /src/distrib/amd64/cdroms/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/amd64/installimage/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/amd64/installimage-bios/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/i386/cdroms/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/evbarm/installimage/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/i386/installimage/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/sparc64/cdroms/installcd/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/distrib/vax/cdroms/installcd/
install.sh 82 read ans
83 if [ -n "$ans" ];then
84 TERM=$ans
  /src/tests/net/if_loop/
t_pr.c 118 struct sysctlnode q, ans[256]; local in function:enable_locsums
127 alen = sizeof(ans);
132 if (rump_sys___sysctl(mib, 4, ans, &alen, &q, sizeof(q)) == -1)
135 for (i = 0; i < __arraycount(ans); i++)
136 if (strcmp("do_loopback_cksum", ans[i].sysctl_name) == 0)
138 if (i == __arraycount(ans)) {
143 mib[3] = ans[i].sysctl_num;
  /src/usr.sbin/rpcbind/
pmap_svc.c 172 long ans; local in function:pmapproc_change
225 ans = FALSE;
228 ans = map_set(&rpcbreg, rpcbreg.r_owner);
237 ans = ans1 || ans2;
239 ans = FALSE;
242 if ((!svc_sendreply(xprt, (xdrproc_t) xdr_long, (caddr_t) &ans)) &&
251 fprintf(stderr, "%s\n", ans == TRUE ? "succeeded" : "failed");
254 rpcbs_set(RPCBVERS_2_STAT, ans);
256 rpcbs_unset(RPCBVERS_2_STAT, ans);
check_bound.c 91 int ans; local in function:check_bound
107 ans = bind(fd, (struct sockaddr *)na->buf, na->len);
117 return (ans == 0 ? FALSE : TRUE);
rpcb_svc_com.c 138 static bool_t ans; local in function:rpcbproc_set_com
147 ans = map_set(regp, getowner(transp, owner, sizeof owner));
150 fprintf(stderr, "%s\n", ans == TRUE ? "succeeded" : "failed");
153 rpcbs_set(rpcbversnum - 2, ans);
154 return (void *)&ans;
226 static bool_t ans; local in function:rpcbproc_unset_com
235 ans = map_unset(regp, getowner(transp, owner, sizeof owner));
238 fprintf(stderr, "%s\n", ans == TRUE ? "succeeded" : "failed");
241 rpcbs_unset(rpcbversnum - 2, ans);
242 return (void *)&ans;
248 int ans = 0; local in function:map_unset
    [all...]
  /src/lib/libc/resolv/
res_send.c 342 const u_char *buf, int buflen, u_char *ans, int anssiz)
479 ans, anssiz, &resplen);
515 n = send_vc(statp, buf, (size_t)buflen, ans, anssiz, &terrno,
528 buf, (size_t)buflen, ans, anssiz, &terrno,
547 ans, (resplen > anssiz) ? anssiz : resplen);
565 ans, anssiz, &resplen);
660 const void *buf, size_t buflen, u_char *ans, int anssiz,
664 HEADER *anhp = (HEADER *)(void *)ans;
766 cp = ans;
794 resplen = ns_get16(ans);
    [all...]
res_data.c 248 res_send(const u_char *buf, int buflen, u_char *ans, int anssiz) {
254 return (res_nsend(&_nres, buf, buflen, ans, anssiz));
260 u_char *ans, int anssiz)
267 return (res_nsendsigned(&_nres, buf, buflen, key, ans, anssiz));
  /src/games/robots/
auto.c 138 static char ans[sizeof moves]; local in function:find_moves
139 a = ans;
160 if (ans[0])
161 return ans;
  /src/lib/libukfs/
ukfs.c 1281 struct sysctlnode q, ans[128]; local in function:ukfs_vfstypes
1288 alen = sizeof(ans);
1293 if (rump_sys___sysctl(mib, 3, ans, &alen, &q, sizeof(q)) == -1) {
1297 for (i = 0; i < alen/sizeof(ans[0]); i++)
1298 if (strcmp("fstypes", ans[i].sysctl_name) == 0)
1300 if (i == alen/sizeof(ans[0])) {
1307 mib[2] = ans[i].sysctl_num;
  /src/usr.bin/gzip/
gzip.c 1192 char ans[10] = { 'n', '\0' }; /* default */ local in function:check_outfile
1196 (void)fgets(ans, sizeof(ans) - 1, stdin);
1197 if (ans[0] != 'y' && ans[0] != 'Y') {
  /src/sys/netinet/
sctp_output.c 534 struct in_addr ans; local in function:sctp_choose_v4_boundspecific_inp
600 memset(&ans, 0, sizeof(ans));
601 return (ans);
621 struct in_addr ans; local in function:sctp_choose_v4_boundspecific_stcb
825 memset(&ans, 0, sizeof(ans));
826 return (ans);
896 struct in_addr ans; local in function:sctp_choose_v4_boundall
1067 memset(&ans, 0, sizeof(ans))
1080 struct in_addr ans; local in function:sctp_ipv4_source_address_selection
1841 struct in6_addr ans; local in function:sctp_ipv6_source_address_selection
    [all...]
  /src/usr.bin/vmstat/
vmstat.c 873 long ans; local in function:pct
877 ans = (long)((quad_t)top * 100 / bot);
878 return (ans);
  /src/sys/arch/m68k/060sp/dist/
fplsp.s 6713 # Step 1. Set ans := 1.0 #
6715 # Step 2. Return ans := ans + sign(X)*2^(-126). Exit. #
6809 # ans := T + ( T*p + t) #
6823 # 6.2 ans := ans * AdjScale #
6825 # 6.4 Return ans := ans * Scale. Exit. #
6841 # 7.1 ans := X #
6843 # 7.3 Return ans := 1 + ans. Exit
    [all...]
fpsp.s 6819 # Step 1. Set ans := 1.0 #
6821 # Step 2. Return ans := ans + sign(X)*2^(-126). Exit. #
6915 # ans := T + ( T*p + t) #
6929 # 6.2 ans := ans * AdjScale #
6931 # 6.4 Return ans := ans * Scale. Exit. #
6947 # 7.1 ans := X #
6949 # 7.3 Return ans := 1 + ans. Exit
    [all...]

Completed in 34 milliseconds