Searched refs:af (Results 1 - 25 of 258) sorted by path

1234567891011

/freebsd-9.3-release/contrib/amd/fsinfo/
H A Dwr_atab.c56 write_amount_info(FILE *af, automount *ap, u_int sk) argument
70 fprintf(af, "%s type:=auto;fs:=${map};pref:=%s/\n",
74 errors += write_amount_info(af, ap2, sk);
95 fputs(key, af);
96 fprintf(af, " rhost:=%s", hostname);
97 fprintf(af, ";rfs:=%s", path);
99 fprintf(af, ";%s", ap->a_opts);
101 fputc('\n', af);
119 fputs(key, af);
157 fputs(" -type:=link", af);
263 FILE *af; local
300 FILE *af = pref_open(mount_pref, "direct.map", info_hdr, "direct mount"); local
[all...]
/freebsd-9.3-release/contrib/bind9/bin/dig/
H A Ddighost.c592 int af = 0; local
596 af = AF_INET;
600 af = AF_INET6;
604 return (af);
615 int af; local
620 af = addr2af(confdata->nameservers[i].family);
622 if (af == AF_INET && !have_ipv4)
624 if (af == AF_INET6 && !have_ipv6)
627 lwres_net_ntop(af, confdata->nameservers[i].address,
680 add_nameserver(lwres_conf_t *confdata, const char *addr, int af) { argument
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwdgabn.c74 int af; local
79 af = AF_INET;
81 af = AF_INET6;
86 if (sa->sa_family != af)
H A Dserver.c943 int af, dns_dispatch_t **dispatchp,
953 switch (af) {
967 INSIST(isc_sockaddr_pf(&sa) == af);
972 switch (af) {
990 switch (af) {
1027 switch (af) {
942 get_view_querysource_dispatch(const cfg_obj_t **maps, int af, dns_dispatch_t **dispatchp, isc_boolean_t is_firstview) argument
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dportlist.h46 dns_portlist_add(dns_portlist_t *portlist, int af, in_port_t port);
48 * Add the given <port,af> tuple to the portlist.
52 *\li 'af' to be AF_INET or AF_INET6
60 dns_portlist_remove(dns_portlist_t *portlist, int af, in_port_t port);
62 * Remove the given <port,af> tuple to the portlist.
66 *\li 'af' to be AF_INET or AF_INET6
70 dns_portlist_match(dns_portlist_t *portlist, int af, in_port_t port);
72 * Find the given <port,af> tuple to the portlist.
76 *\li 'af' to be AF_INET or AF_INET6
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dportlist.c138 dns_portlist_add(dns_portlist_t *portlist, int af, in_port_t port) { argument
143 REQUIRE(af == AF_INET || af == AF_INET6);
149 if (af == AF_INET)
176 if (af == AF_INET)
189 dns_portlist_remove(dns_portlist_t *portlist, int af, in_port_t port) { argument
193 REQUIRE(af == AF_INET || af == AF_INET6);
199 if (af == AF_INET)
215 dns_portlist_match(dns_portlist_t *portlist, int af, in_port_ argument
[all...]
H A Drdata.c146 inet_totext(int af, isc_region_t *src, isc_buffer_t *target);
1478 inet_totext(int af, isc_region_t *src, isc_buffer_t *target) { argument
1482 if (inet_ntop(af, src->base, tmpbuf, sizeof(tmpbuf)) == NULL)
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dinterfaceiter.h53 unsigned int af; /*%< Address family. */ member in struct:isc_interface
H A Dnetscope.h39 isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid);
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dinet_ntop.c51 * isc_net_ntop(af, src, dst, size)
59 isc_net_ntop(int af, const void *src, char *dst, size_t size) argument
61 switch (af) {
H A Dinet_pton.c58 isc_net_pton(int af, const char *src, void *dst) { argument
59 switch (af) {
H A Dnetscope.c33 isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid) { argument
43 if (af != AF_INET6)
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/
H A Difiter_getifaddrs.c175 iter->current.af = family;
H A Difiter_ioctl.c410 iter->current.af = iter->clua_sa.sa_family;
468 iter->current.af = family;
651 iter->current.af = family;
H A Difiter_sysctl.c245 iter->current.af = family;
H A Dinterfaceiter.c224 iter->current.af = AF_INET6;
H A Dnet.c403 getudpportrange_sysctl(int af, in_port_t *low, in_port_t *high) { argument
408 if (af == AF_INET) {
435 getudpportrange_sysctl(int af, in_port_t *low, in_port_t *high) { argument
444 if (af == AF_INET) {
476 isc_net_getudpportrange(int af, in_port_t *low, in_port_t *high) { argument
482 result = getudpportrange_sysctl(af, low, high);
484 UNUSED(af);
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/include/isc/
H A Dnet.h328 isc_net_getudpportrange(int af, in_port_t *low, in_port_t *high);
346 isc_net_ntop(int af, const void *src, char *dst, size_t size);
352 isc_net_pton(int af, const char *src, void *dst);
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dgethost.c70 * lwres_gethostbyname2() looks for an address of protocol family af:
182 lwres_gethostbyname2(const char *name, int af) { argument
186 he = lwres_getipnodebyname(name, af, 0, &lwres_h_errno);
H A Dgetipnode.c58 * lwres_getipnodebyname() looks up addresses of protocol family af for
64 * This is used with an af of #AF_INET6, and causes IPv4 addresses
68 * This is used with an af of #AF_INET6, and causes all known
83 * is len bytes long. af denotes the protocol family, typically PF_INET
177 hostfromaddr(lwres_gnbaresponse_t *addr, int af, const void *src);
180 hostfromname(lwres_gabnresponse_t *name, int af);
199 lwres_getipnodebyname(const char *name, int af, int flags, int *error_num) { argument
226 if ((af == AF_INET6 && (flags & AI_V4MAPPED) == 0 && v4 == 1) ||
227 (af == AF_INET && v6 == 1) ||
230 (have_v4 == 0 && af
334 lwres_getipnodebyaddr(const void *src, size_t len, int af, int *error_num) argument
844 copyandmerge(struct hostent *he1, struct hostent *he2, int af, int *error_num) argument
1010 hostfromaddr(lwres_gnbaresponse_t *addr, int af, const void *src) argument
1086 hostfromname(lwres_gabnresponse_t *name, int af) argument
[all...]
H A Dlwconfig.c113 int af = 0; local
117 af = AF_INET;
121 af = AF_INET6;
125 return (af);
631 int af; local
643 af = lwresaddr2af(confdata->nameservers[i].family);
645 p = lwres_net_ntop(af, confdata->nameservers[i].address,
654 af = lwresaddr2af(confdata->lwservers[i].family);
656 p = lwres_net_ntop(af, confdata->lwservers[i].address,
680 af
[all...]
H A Dlwinetntop.c51 * lwres_net_ntop(af, src, dst, size)
59 lwres_net_ntop(int af, const void *src, char *dst, size_t size) { argument
60 switch (af) {
H A Dlwinetpton.c46 * lwres_net_pton(af, src, dst)
57 lwres_net_pton(int af, const char *src, void *dst) { argument
58 switch (af) {
/freebsd-9.3-release/contrib/bind9/lib/lwres/unix/include/lwres/
H A Dnet.h125 lwres_net_ntop(int af, const void *src, char *dst, size_t size);
128 lwres_net_pton(int af, const char *src, void *dst);
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dobjdump.c502 bfd_boolean af;
524 af = (strstr (an, "gnu_compiled") != NULL
529 if (af && ! bf)
531 if (! af && bf)
545 af = file_symbol (a, an, anl);
548 if (af && ! bf)
550 if (! af && bf)
498 bfd_boolean af; local

Completed in 186 milliseconds

1234567891011