HomeSort by: relevance | last modified time | path
    Searched refs:af (Results 1 - 25 of 431) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/syspkg/sets/base/base-locale-af/
Makefile 3 PKGBASE=base-locale-af
  /src/usr.sbin/autofs/
autounmountd.c 68 struct automounted_fs *af; local
70 TAILQ_FOREACH(af, &automounted, af_next) {
71 if (af->af_fsid.__fsid_val[0] == fsid.__fsid_val[0] &&
72 af->af_fsid.__fsid_val[1] == fsid.__fsid_val[1])
73 return af;
82 struct automounted_fs *af; local
84 af = calloc(1, sizeof(*af));
85 if (af == NULL)
87 af->af_mount_time = time(NULL)
107 struct automounted_fs *af, *tmpaf; local
181 struct automounted_fs *af, *tmpaf; local
    [all...]
  /src/external/bsd/am-utils/dist/fsinfo/
wr_atab.c 54 write_amount_info(FILE *af, automount *ap, u_int sk)
68 fprintf(af, "%s type:=auto;fs:=${map};pref:=%s/\n",
72 errors += write_amount_info(af, ap2, sk);
93 fputs(key, af);
94 fprintf(af, " rhost:=%s", hostname);
95 fprintf(af, ";rfs:=%s", path);
97 fprintf(af, ";%s", ap->a_opts);
99 fputc('\n', af);
117 fputs(key, af);
155 fputs(" -type:=link", af);
261 FILE *af; local
298 FILE *af = pref_open(mount_pref, "direct.map", info_hdr, "direct mount"); local
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
netscope.h 41 isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid);
  /src/external/bsd/tcpdump/dist/
print-enc.c 38 #include "af.h"
82 nd_uint32_t af; member in struct:enchdr
106 u_int af, flags; local
132 UNALIGNED_MEMCPY(&af, &hdr->af, sizeof (af));
134 if ((af & 0xFFFF0000) != 0) {
135 af = SWAPLONG(af);
151 switch (af) {
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/
ptype_union.c 32 union a af; member in struct:s
  /src/external/ibm-public/postfix/dist/src/util/
inet_addr_sizes.h 20 int af; /* network address family (binary) */ member in struct:__anon23244
inet_addr_sizes.c 13 /* int af; /* network address family (binary) */
69 const INET_ADDR_SIZES *inet_addr_sizes(int af)
76 if (sp->af == af)
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
netscope.h 37 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/
ptype_union.c 32 union a af; member in struct:s
  /src/sbin/route/
show.c 73 int af, flags; local
76 af = AF_UNSPEC;
85 af = AF_INET;
90 af = AF_INET6;
96 af = AF_APPLETALK;
100 af = AF_MPLS;
107 af = AF_LINK;
124 *afp = af;
134 int af, rflags; local
140 parse_show_opts(argc, argv, &af, &rflags, NULL, true)
    [all...]
  /src/external/bsd/wpa/dist/src/utils/
ip_addr.c 20 if (addr->af == AF_INET) {
26 if (addr->af == AF_INET6) {
40 addr->af = AF_INET;
46 addr->af = AF_INET6;
59 if (a->af != b->af)
62 if (a->af == AF_INET && a->u.v4.s_addr == b->u.v4.s_addr)
66 if (a->af == AF_INET6 &&
  /src/external/gpl3/gdb/dist/gnulib/import/
arpa_inet.in.h 68 AF is an internet address family, such as AF_INET or AF_INET6.
87 (int af, const void *restrict src,
91 (int af, const void *restrict src,
96 (int af, const void *restrict src,
103 (int af, const void *restrict src,
124 (int af, const char *restrict src, void *restrict dst)
127 (int af, const char *restrict src, void *restrict dst));
131 (int af, const char *restrict src, void *restrict dst)
135 (int af, const char *restrict src, void *restrict dst));
  /src/external/gpl3/gdb.old/dist/gnulib/import/
arpa_inet.in.h 68 AF is an internet address family, such as AF_INET or AF_INET6.
87 (int af, const void *restrict src,
91 (int af, const void *restrict src,
96 (int af, const void *restrict src,
103 (int af, const void *restrict src,
124 (int af, const char *restrict src, void *restrict dst)
127 (int af, const char *restrict src, void *restrict dst));
131 (int af, const char *restrict src, void *restrict dst)
135 (int af, const char *restrict src, void *restrict dst));
  /src/external/mpl/bind/dist/lib/isc/include/isc/
netscope.h 36 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getipnodebyname.c 45 * lookup `name' (address family `af') in DNS and return a pointer
50 getipnodebyname (const char *name, int af, int flags, int *error_num)
55 tmp = gethostbyname2 (name, af);
57 if (af != AF_INET) {
getipnodebyaddr.c 41 * lookup `src, len' (address family `af') in DNS and return a pointer
46 getipnodebyaddr (const void *src, size_t len, int af, int *error_num)
50 tmp = gethostbyaddr (src, len, af);
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
portlist.h 47 dns_portlist_add(dns_portlist_t *portlist, int af, in_port_t port);
49 * Add the given <port,af> tuple to the portlist.
53 *\li 'af' to be AF_INET or AF_INET6
61 dns_portlist_remove(dns_portlist_t *portlist, int af, in_port_t port);
63 * Remove the given <port,af> tuple to the portlist.
67 *\li 'af' to be AF_INET or AF_INET6
71 dns_portlist_match(dns_portlist_t *portlist, int af, in_port_t port);
73 * Find the given <port,af> tuple to the portlist.
77 *\li 'af' to be AF_INET or AF_INET6
  /src/usr.sbin/npf/npftest/libnpftest/
npf_rule_test.c 18 int af; member in struct:test_case
29 .af = AF_INET,
35 .af = AF_INET,
43 .af = AF_INET,
49 .af = AF_INET,
56 .af = AF_INET,
62 .af = AF_INET,
68 .af = AF_INET,
74 .af = AF_INET,
86 .af = AF_INET6
    [all...]
  /src/external/gpl2/lvm2/dist/lib/format_text/
archive.c 134 struct archive_file *af; local
168 if (!(af = dm_pool_alloc(mem, sizeof(*af)))) {
174 af->index = ix;
175 af->path = path;
180 _insert_archive_file(results, af);
298 static void _display_archive(struct cmd_context *cmd, struct archive_file *af)
307 log_print("File:\t\t%s", af->path);
309 if (!(context = create_text_context(cmd, af->path, NULL)) ||
321 if (!(vg = text_vg_import_file(tf, af->path, &when, &desc)))
338 struct archive_file *af; local
356 struct archive_file af; local
372 struct archive_file af; local
    [all...]
  /src/tests/lib/libc/net/
h_hostent.c 57 const int af = h->h_length == NS_INADDRSZ ? AF_INET : AF_INET6; local
68 printf("%s%s", i == 0 ? "" : " ", inet_ntop(af,
115 int c, af, e, byaddr, len; local
120 af = AF_INET;
128 while ((c = getopt(argc, argv, "46af:r:t:")) != -1) {
131 af = AF_INET;
134 af = AF_INET6;
179 af = strchr(*argv, ':') ? AF_INET6 : AF_INET;
180 len = af == AF_INET ? NS_INADDRSZ : NS_IN6ADDRSZ;
181 if (inet_pton(af, *argv, &addr) == -1
    [all...]
  /src/external/bsd/ntp/dist/libntp/
is_ip_address.c 31 u_short af,
56 if (AF_UNSPEC == af || AF_INET == af)
58 AF(addr) = AF_INET;
64 if (AF_UNSPEC == af || AF_INET6 == af)
78 AF(addr) = AF_INET6;
  /src/crypto/external/bsd/openssh/dist/
addr.c 39 addr_unicast_masklen(int af)
41 switch (af) {
52 masklen_valid(int af, u_int masklen)
54 switch (af) {
74 switch (xa->af) {
122 xa->af = AF_INET;
128 xa->af = AF_INET6;
149 switch (n->af) {
163 * Calculate a netmask of length 'l' for address family 'af' and
168 addr_netmask(int af, u_int l, struct xaddr *n
    [all...]
  /src/games/sail/
pl_5.c 58 bool af; local
70 ta = maxturns(ms, &af);
73 "move (%d,%c%d): ", ma, af ? '\'' : ' ', ta);
132 || (af && turnfirst(buf) && moved)) {
142 if (af && !moved) {
  /src/lib/libc/resolv/
res_private.h 9 int af; member in struct:__res_state_ext::sort_list

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>