| /netbsd/src/usr.sbin/npf/npfctl/ |
| D | npf_data.c | 112 npfctl_copy_address(sa_family_t fam, npf_addr_t *addr, const void *ptr) in npfctl_copy_address() argument 116 switch (fam) { in npfctl_copy_address() 128 yyerror("unknown address family %u", fam); in npfctl_copy_address() 140 npfctl_parse_fam_addr(const char *name, sa_family_t *fam, npf_addr_t *addr) in npfctl_parse_fam_addr() argument 154 if (fam) { in npfctl_parse_fam_addr() 155 *fam = ai->ai_family; in npfctl_parse_fam_addr() 157 if (!npfctl_copy_address(*fam, addr, ai->ai_addr)) { in npfctl_parse_fam_addr() 172 npfctl_parse_mask(const char *s, sa_family_t fam, npf_netmask_t *mask) in npfctl_parse_mask() argument 179 assert(fam == AF_INET || fam == AF_INET6); in npfctl_parse_mask() 194 if (!npfctl_parse_fam_addr(s, &fam, &addr)) { in npfctl_parse_mask() [all …]
|
| D | npf_build.c | 266 fam_addr_mask_t *fam, unsigned opts) in npfctl_build_fam() argument 273 if (family != AF_UNSPEC && family != fam->fam_family) { in npfctl_build_fam() 274 if (!fam->fam_ifindex) { in npfctl_build_fam() 281 family = fam->fam_family; in npfctl_build_fam() 290 if (fam->fam_mask == 0) { in npfctl_build_fam() 291 if (!npfctl_addr_iszero(&fam->fam_addr)) { in npfctl_build_fam() 297 npfctl_bpf_cidr(ctx, opts, family, &fam->fam_addr, fam->fam_mask); in npfctl_build_fam() 313 fam_addr_mask_t *fam = data; in npfctl_build_vars() local 314 npfctl_build_fam(ctx, family, fam, opts); in npfctl_build_vars() 998 fam_addr_mask_t fam; in npfctl_fill_table() local [all …]
|
| D | npf_cmd.c | 306 fam_addr_mask_t fam; in npfctl_table() local 348 if (!npfctl_parse_cidr(arg, &fam, &alen)) { in npfctl_table() 352 memcpy(&nct.nct_data.ent.addr, &fam.fam_addr, alen); in npfctl_table() 353 nct.nct_data.ent.mask = fam.fam_mask; in npfctl_table()
|
| /netbsd/src/external/bsd/openldap/dist/servers/slapd/ |
| D | proxyp.c | 38 uint8_t fam; /* protocol family and address */ member 113 switch ( pph.fam ) { in proxyp() 123 (long)sfd, pph.fam ); in proxyp() 158 switch ( pph.fam ) { in proxyp()
|
| /netbsd/src/external/bsd/ntp/dist/include/ |
| D | ntp_net.h | 113 #define SIZEOF_INADDR(fam) \ argument 114 ((AF_INET == (fam)) \ 118 #define SIZEOF_SOCKADDR(fam) \ argument 119 ((AF_INET == (fam)) \
|
| /netbsd/src/crypto/external/bsd/netpgp/dist/src/hkpd/ |
| D | hkpd.c | 127 hkpd_sock_get(const int fam) in hkpd_sock_get() argument 132 sock = socket((fam == 4) ? AF_INET : AF_INET6, SOCK_STREAM, 0); in hkpd_sock_get() 156 hkpd_sock_bind(const char *hostname, const int port, const int fam) in hkpd_sock_bind() argument 165 hints.ai_family = (fam == 4) ? PF_INET : PF_INET6; in hkpd_sock_bind() 180 if ((sock = hkpd_sock_get(fam)) < 0) { in hkpd_sock_bind()
|
| /netbsd/src/crypto/external/bsd/netpgp/dist/src/hkpclient/ |
| D | hkpc.c | 45 hkpc_connect(const char *hostname, const int port, const int fam) in hkpc_connect() argument 54 hints.ai_family = (fam == 4) ? PF_INET : PF_INET6; in hkpc_connect() 65 if ((sock = socket((fam == 4) ? AF_INET : AF_INET6, SOCK_STREAM, 0)) < 0) { in hkpc_connect()
|
| /netbsd/src/sys/arch/x86/x86/ |
| D | errata.c | 114 #define CPUREV(fam,mod,step) \ argument 115 (((fam) > 0xf ? \ 116 (0xf << 8) | ((fam) - 0xf) << 20 : \ 117 (fam) << 8) | \ 119 (((fam) == 6 || ((fam) >= 0xf)) ? \
|
| /netbsd/src/crypto/external/bsd/openssl/dist/test/ |
| D | v3ext.c | 148 IPAddressFamily *fam; in check_addr() local 154 fam = sk_IPAddressFamily_value(addr, 0); in check_addr() 155 if (!TEST_ptr(fam)) in check_addr() 158 if (!TEST_int_eq(fam->ipAddressChoice->type, IPAddressChoice_addressesOrRanges)) in check_addr() 161 if (!TEST_int_eq(sk_IPAddressOrRange_num(fam->ipAddressChoice->u.addressesOrRanges), 1)) in check_addr() 164 aorr = sk_IPAddressOrRange_value(fam->ipAddressChoice->u.addressesOrRanges, 0); in check_addr()
|
| /netbsd/src/external/bsd/ntp/dist/ntpq/ |
| D | libntpq.c | 236 int fam in ntpq_openhost() argument 239 if ( openhost(hostname, fam) ) in ntpq_openhost()
|
| D | ntpq.h | 126 int fam; member
|
| D | ntpq.c | 418 chosts[numhosts].fam = ai_fam_templ; \ 636 if (openhost(chosts[ihost].name, chosts[ihost].fam)) { in ntpqmain() 652 (void) openhost(chosts[0].name, chosts[0].fam); in ntpqmain() 668 int fam in openhost() argument 703 hints.ai_family = fam; in openhost()
|
| /netbsd/src/external/ibm-public/postfix/dist/src/global/ |
| D | haproxy_srvr.c | 144 uint8_t fam; /* protocol family and transport */ member 354 switch (hdr_v2->fam) { in haproxy_srvr_parse_v2_hdr() 740 hdr_v2->fam = PP2_FAM_INET6 | PP2_TRANS_STREAM; in convert_v1_proxy_req_to_v2() 753 hdr_v2->fam = PP2_FAM_INET | PP2_TRANS_STREAM; in convert_v1_proxy_req_to_v2()
|
| /netbsd/src/etc/ |
| D | rpc | 37 sgi_fam 391002 fam
|
| /netbsd/src/lib/libc/net/ |
| D | sctp_sys_calls.c | 188 int i, sz, fam, argsz; in sctp_bindx() local 206 fam = sa->sa_family; in sctp_bindx() 208 if ((fam != AF_INET) && (fam != AF_INET6)) { in sctp_bindx()
|
| /netbsd/src/external/bsd/iscsi/dist/src/lib/ |
| D | util.c | 671 iscsi_address_family(int fam) in iscsi_address_family() argument 673 switch(fam) { in iscsi_address_family()
|
| /netbsd/src/lib/libc/nls/ |
| D | ca.msg | 95 47 Fam�lia d'adreces no suportada per la fam�lia de protocols
|
| /netbsd/src/external/ibm-public/postfix/dist/proto/ |
| D | stop.spell-cc | 415 fam
|
| /netbsd/src/external/lgpl3/mpfr/dist/doc/ |
| D | texinfo.tex | 2517 \def\rm{\fam=0 \setfontstyle{rm}} 2518 \def\it{\fam=\itfam \setfontstyle{it}} 2519 \def\sl{\fam=\slfam \setfontstyle{sl}} 2520 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 2521 \def\tt{\fam=\ttfam \setfontstyle{tt}} 2526 \def\sf{\fam=\sffam \setfontstyle{sf}} 2554 % the current \fam for math mode.) 3260 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 3268 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 3461 \count255=\the\fam $\fam\count255 \scriptstyle A$% [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/include/ |
| D | texinfo.tex | 1457 \def\rm{\fam=0 \setfontstyle{rm}} 1458 \def\it{\fam=\itfam \setfontstyle{it}} 1459 \def\sl{\fam=\slfam \setfontstyle{sl}} 1460 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1461 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1470 \def\sf{\fam=\sffam \setfontstyle{sf}} 2103 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire 2809 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 2817 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 2959 \count255=\the\fam $\fam\count255 \scriptstyle A$% [all …]
|
| /netbsd/src/external/lgpl3/mpc/dist/doc/ |
| D | texinfo.tex | 1458 \def\rm{\fam=0 \setfontstyle{rm}} 1459 \def\it{\fam=\itfam \setfontstyle{it}} 1460 \def\sl{\fam=\slfam \setfontstyle{sl}} 1461 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1462 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1471 \def\sf{\fam=\sffam \setfontstyle{sf}} 2104 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire 2809 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 2817 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 2962 \count255=\the\fam $\fam\count255 \scriptstyle A$% [all …]
|
| /netbsd/src/external/bsd/am-utils/dist/doc/ |
| D | texinfo.tex | 1458 \def\rm{\fam=0 \setfontstyle{rm}} 1459 \def\it{\fam=\itfam \setfontstyle{it}} 1460 \def\sl{\fam=\slfam \setfontstyle{sl}} 1461 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1462 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1471 \def\sf{\fam=\sffam \setfontstyle{sf}} 2104 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire 2809 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 2817 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 2962 \count255=\the\fam $\fam\count255 \scriptstyle A$% [all …]
|
| /netbsd/src/external/lgpl3/gmp/dist/doc/ |
| D | texinfo.tex | 1458 \def\rm{\fam=0 \setfontstyle{rm}} 1459 \def\it{\fam=\itfam \setfontstyle{it}} 1460 \def\sl{\fam=\slfam \setfontstyle{sl}} 1461 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1462 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1471 \def\sf{\fam=\sffam \setfontstyle{sf}} 2104 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire 2809 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 2817 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 2962 \count255=\the\fam $\fam\count255 \scriptstyle A$% [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/texinfo/ |
| D | texinfo.tex | 1112 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 1121 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 1640 \def\rm{\fam=0 \setfontstyle{rm}} 1641 \def\it{\fam=\itfam \setfontstyle{it}} 1642 \def\sl{\fam=\slfam \setfontstyle{sl}} 1643 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1644 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1653 \def\sf{\fam=\sffam \setfontstyle{sf}} 2284 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire
|
| /netbsd/src/external/gpl3/gdb/dist/texinfo/ |
| D | texinfo.tex | 1112 \def_{\ifnum\fam=\slfam \_\else\sb\fi}% 1121 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 1640 \def\rm{\fam=0 \setfontstyle{rm}} 1641 \def\it{\fam=\itfam \setfontstyle{it}} 1642 \def\sl{\fam=\slfam \setfontstyle{sl}} 1643 \def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf} 1644 \def\tt{\fam=\ttfam \setfontstyle{tt}} 1653 \def\sf{\fam=\sffam \setfontstyle{sf}} 2284 % current \fam for math mode. Our \STYLE (e.g., \rm) commands hardwire
|