Searched refs:hints (Results 176 - 200 of 247) sorted by relevance

12345678910

/freebsd-11-stable/contrib/ofed/librdmacm/examples/
H A Dcommon.h79 struct rdma_addrinfo *hints, struct rdma_addrinfo **rai);
/freebsd-11-stable/sys/i386/include/
H A Dcpufunc.h133 cpu_monitor(const void *addr, u_long extensions, u_int hints) argument
137 : : "a" (addr), "c" (extensions), "d" (hints));
141 cpu_mwait(u_long extensions, u_int hints) argument
144 __asm __volatile("mwait" : : "a" (hints), "c" (extensions));
/freebsd-11-stable/sys/amd64/include/
H A Dcpufunc.h605 cpu_monitor(const void *addr, u_long extensions, u_int hints) argument
609 : : "a" (addr), "c" (extensions), "d" (hints));
613 cpu_mwait(u_long extensions, u_int hints) argument
616 __asm __volatile("mwait" : : "a" (hints), "c" (extensions));
/freebsd-11-stable/sbin/ifconfig/
H A Daf_inet6.c330 struct addrinfo hints, *res; local
349 bzero(&hints, sizeof(struct addrinfo));
350 hints.ai_family = AF_INET6;
351 error = getaddrinfo(s, NULL, &hints, &res);
/freebsd-11-stable/contrib/tnftp/src/
H A Dfetch.c480 struct addrinfo hints, *res, *res0 = NULL; local
701 memset(&hints, 0, sizeof(hints));
702 hints.ai_flags = 0;
703 hints.ai_family = family;
704 hints.ai_socktype = SOCK_STREAM;
705 hints.ai_protocol = 0;
706 error = getaddrinfo(host, port, &hints, &res0);
H A Dftp.c169 struct addrinfo hints, *res, *res0; local
176 memset(&hints, 0, sizeof(hints));
177 hints.ai_flags = AI_CANONNAME;
178 hints.ai_family = family;
179 hints.ai_socktype = SOCK_STREAM;
180 hints.ai_protocol = 0;
181 error = getaddrinfo(host, port, &hints, &res0);
/freebsd-11-stable/libexec/ftpd/
H A Dftpcmd.y207 struct addrinfo hints;
263 memset(&hints, 0, sizeof(hints));
265 hints.ai_family = PF_INET;
268 hints.ai_family = PF_INET6;
271 hints.ai_family = PF_UNSPEC; /*XXX*/
272 hints.ai_socktype = SOCK_STREAM;
273 i = getaddrinfo(result[1], result[2], &hints, &res);
/freebsd-11-stable/crypto/heimdal/appl/gssmask/
H A Dgssmaestro.c612 struct addrinfo hints, *res0, *res; local
623 memset(&hints, 0, sizeof(hints));
624 hints.ai_family = PF_UNSPEC;
625 hints.ai_socktype = SOCK_STREAM;
627 ret = getaddrinfo(name, port, &hints, &res0);
/freebsd-11-stable/crypto/openssh/
H A Dssh-keyscan.c362 struct addrinfo hints, *ai, *aitop; local
367 memset(&hints, 0, sizeof(hints));
368 hints.ai_family = IPv4or6;
369 hints.ai_socktype = SOCK_STREAM;
370 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
/freebsd-11-stable/usr.sbin/jail/
H A Dconfig.c456 struct addrinfo hints; local
528 memset(&hints, 0, sizeof(hints));
529 hints.ai_socktype = SOCK_STREAM;
530 hints.ai_family =
538 gicode = getaddrinfo(hostname, NULL, &hints, &ai0);
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c60 struct addrinfo hints; local
66 memset (&hints, 0, sizeof(hints));
67 hints.ai_socktype = SOCK_STREAM;
68 hints.ai_protocol = IPPROTO_TCP;
69 hints.ai_flags = AI_CANONNAME;
73 error = getaddrinfo (host, portstr, &hints, &ai);
/freebsd-11-stable/sys/rpc/
H A Drpcb_clnt.c295 struct addrinfo hints, *res, *tres;
342 memset(&hints, 0, sizeof hints);
343 hints.ai_family = si.si_af;
344 hints.ai_socktype = si.si_socktype;
345 hints.ai_protocol = si.si_proto;
373 if (getaddrinfo(host, "sunrpc", &hints, &res) != 0) {
/freebsd-11-stable/usr.bin/rpcinfo/
H A Drpcinfo.c561 struct addrinfo hints, *res; local
572 memset(&hints, 0, sizeof hints);
573 hints.ai_family = AF_INET;
574 if ((error = getaddrinfo(host, "rpcbind", &hints, &res))
1580 struct addrinfo hints, *res; local
1584 memset(&hints, 0, sizeof hints);
1585 if (getaddrinfo(host, "rpcbind", &hints, &res) != 0) {
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devdns.c4230 /* Copy of the modified 'hints' data that we'll use to build
4232 struct evutil_addrinfo hints; member in struct:evdns_getaddrinfo_request
4514 ai = evutil_new_addrinfo_(sa, socklen, &data->hints);
4578 const char *nodename, struct evutil_addrinfo *hints, ev_uint16_t port,
4584 int f = hints->ai_family;
4594 ai_new = evutil_new_addrinfo_(&e->addr.sa, e->addrlen, hints);
4623 struct evutil_addrinfo hints; local
4649 memcpy(&hints, hints_in, sizeof(hints));
4651 memset(&hints,
4577 evdns_getaddrinfo_fromhosts(struct evdns_base *base, const char *nodename, struct evutil_addrinfo *hints, ev_uint16_t port, struct evutil_addrinfo **res) argument
[all...]
/freebsd-11-stable/usr.sbin/nfsuserd/
H A Dnfsuserd.c120 struct addrinfo *aip, hints; local
148 memset((void *)&hints, 0, sizeof (hints));
149 hints.ai_flags = AI_CANONNAME;
150 error = getaddrinfo(hostname, NULL, &hints, &aip);
/freebsd-11-stable/etc/
H A DMakefile315 .if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints)
317 ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \
318 ${DESTDIR}/boot/device.hints
/freebsd-11-stable/usr.sbin/syslogd/
H A Dsyslogd.c2821 struct addrinfo hints, *res; local
3039 hints = (struct addrinfo){
3044 p ? p : "syslog", &hints, &res);
3280 struct addrinfo hints, *res = NULL; local
3338 hints = (struct addrinfo){
3343 if (getaddrinfo(s, NULL, &hints, &res) == 0) {
3460 struct addrinfo hints, *res; local
3473 hints = (struct addrinfo){
3478 if (getaddrinfo(name, NULL, &hints, &res) == 0)
3704 struct addrinfo hints, *re local
[all...]
/freebsd-11-stable/lib/libc/tests/nss/
H A Dgethostby_test.c763 struct addrinfo *ai, hints; local
767 memset(&hints, 0, sizeof(struct addrinfo));
768 hints.ai_family = af_type;
769 hints.ai_flags = AI_CANONNAME;
776 rv = getaddrinfo(he->h_name, NULL, &hints, &ai);
783 rv = getaddrinfo(he->h_name, NULL, &hints, &ai);
/freebsd-11-stable/share/examples/drivers/
H A Dmake_device_driver.sh279 * the hints file. Strange failures for people with other cards might
301 * some pnp-like method, or at least mentioned in the hints.
306 * This is similar to what the 'hints' code achieves, except this is
321 * If the device is mentioned in the 'hints' file then this
322 * function can be removed. All devices mentioned in the hints
325 * See isa/isahint.c for hints being added in.
337 * Maybe it was in the hints file. or it was loaded before.
350 return; /* We've added all our local hints. */
381 * whether via the PNP code or via the hints etc.
433 * The ports, irqs etc should come from a 'hints' sectio
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_linker.c1700 static char linker_hintfile[] = "linker.hints";
1769 * Lookup KLD which contains requested module in the "linker.hints" file. If
1781 u_char *hints = NULL; local
1812 printf("hints file too large %ld\n", (long)vattr.va_size);
1815 hints = malloc(vattr.va_size, M_TEMP, M_WAITOK);
1816 error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)hints, vattr.va_size, 0,
1827 intp = (int *)hints;
1830 printf("hints file version mismatch %d\n", ival);
1833 bufend = hints + vattr.va_size;
1847 INT_ALIGN(hints, c
[all...]
/freebsd-11-stable/contrib/bsnmp/lib/
H A Dsnmpclient.c886 struct addrinfo hints, *res0, *res; local
925 memset(&hints, 0, sizeof(hints));
926 hints.ai_flags = AI_CANONNAME;
927 hints.ai_family = AF_INET;
928 hints.ai_socktype = SOCK_DGRAM;
929 hints.ai_protocol = 0;
930 error = getaddrinfo(snmp_client.chost, snmp_client.cport, &hints, &res0);
/freebsd-11-stable/lib/libomp/
H A Dkmp_i18n_id.inc362 // Set #5, hints.
/freebsd-11-stable/contrib/ofed/libibverbs/examples/
H A Dxsrq_pingpong.c546 struct addrinfo hints = { local
554 ret = getaddrinfo(servername, service, &hints, &res);
597 struct addrinfo hints = { local
606 ret = getaddrinfo(NULL, service, &hints, &res);
H A Dsrq_pingpong.c149 struct addrinfo hints = { local
165 n = getaddrinfo(servername, service, &hints, &res);
239 struct addrinfo hints = { local
256 n = getaddrinfo(NULL, service, &hints, &res);
H A Drc_pingpong.c156 struct addrinfo hints = { local
170 n = getaddrinfo(servername, service, &hints, &res);
231 struct addrinfo hints = { local
246 n = getaddrinfo(NULL, service, &hints, &res);

Completed in 2115 milliseconds

12345678910