Searched refs:hints (Results 151 - 175 of 248) sorted by relevance

12345678910

/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dview.c124 view->hints = NULL;
339 if (view->hints != NULL)
340 dns_db_detach(&view->hints);
753 dns_view_sethints(dns_view_t *view, dns_db_t *hints) { argument
756 REQUIRE(view->hints == NULL);
757 REQUIRE(dns_db_iszone(hints));
759 dns_db_attach(hints, &view->hints);
1029 if (result == ISC_R_NOTFOUND && use_hints && view->hints != NULL) {
1040 result = dns_db_find(view->hints, nam
[all...]
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dgetaddrinfo.c182 "Invalid value for hints", /* EAI_BADHINTS */
269 const struct addrinfo *hints, struct addrinfo **res)
294 if (hints) {
295 /* error check for hints */
296 if (hints->ai_addrlen || hints->ai_canonname ||
297 hints->ai_addr || hints->ai_next)
299 if (hints->ai_flags & ~AI_MASK)
301 switch (hints
268 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/socket/
H A Daddrinfo.h162 const struct addrinfo *hints,
/macosx-10.10/postfix-255/postfix/mantools/
H A Dmake_soho_readme25 <p> This document combines hints and tips for "small office/home
/macosx-10.10/remote_cmds-47/telnetd.tproj/
H A Dtelnetd.c350 struct addrinfo hints, *res; local
358 memset(&hints, 0, sizeof(hints));
359 hints.ai_flags = AI_PASSIVE;
360 hints.ai_family = family;
361 hints.ai_socktype = SOCK_STREAM;
362 hints.ai_protocol = 0;
363 error = getaddrinfo(NULL, service, &hints, &res);
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dipropd_slave.c52 struct addrinfo hints; local
56 memset (&hints, 0, sizeof(hints));
57 hints.ai_socktype = SOCK_STREAM;
64 error = getaddrinfo (master, port_str, &hints, &ai);
/macosx-10.10/Libinfo-459/lookup.subproj/
H A Dlibinfo.c2298 _getaddrinfo_internal(const char *nodename, const char *servname, const struct addrinfo *hints, const char *interface, struct addrinfo **res) argument
2313 if (hints != NULL)
2315 family = hints->ai_family;
2316 socktype = hints->ai_socktype;
2317 protocol = hints->ai_protocol;
2318 flags = hints->ai_flags;
2355 getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
2357 return _getaddrinfo_internal(nodename, servname, hints, NULL, res);
2580 _getaddrinfo_interface_async_call(const char *nodename, const char *servname, const struct addrinfo *hints, const char *interface, si_addrinfo_async_callback callback, void *context) argument
2590 if (hints !
2614 getaddrinfo_async_call(const char *nodename, const char *servname, const struct addrinfo *hints, si_addrinfo_async_callback callback, void *context) argument
2620 getaddrinfo_async_start(mach_port_t *p, const char *nodename, const char *servname, const struct addrinfo *hints, si_addrinfo_async_callback callback, void *context) argument
2631 getaddrinfo_async_send(mach_port_t *p, const char *nodename, const char *servname, const struct addrinfo *hints) argument
[all...]
/macosx-10.10/BerkeleyDB-21/db/repmgr/
H A Drepmgr_net.c940 ADDRINFO *answer, hints; local
962 memset(&hints, 0, sizeof(hints));
963 hints.ai_family = AF_UNSPEC;
964 hints.ai_socktype = SOCK_STREAM;
965 hints.ai_flags = flags;
975 if (__os_getaddrinfo(env, host, port, buffer, &hints, &answer) != 0)
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dos-ip.c553 struct addrinfo hints, *res, *sai; local
597 memset( &hints, '\0', sizeof(hints) );
600 hints.ai_flags = AI_ADDRCONFIG;
602 hints.ai_family = ldap_int_inet4or6;
603 hints.ai_socktype = socktype;
609 err = getaddrinfo( host, serv, &hints, &res );
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dmod_socache_shmcb.c340 const struct ap_socache_hints *hints,
399 /* Select index size based on average object size hints, if given. */
400 avg_obj_size = hints && hints->avg_obj_size ? hints->avg_obj_size : 150;
401 avg_id_len = hints && hints->avg_id_len ? hints->avg_id_len : 30;
338 socache_shmcb_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
H A Dmod_socache_dbm.c119 const struct ap_socache_hints *hints,
152 ctx->expiry_interval = (hints && hints->expiry_interval
153 ? hints->expiry_interval : apr_time_from_sec(30));
117 socache_dbm_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
H A Dmod_socache_dc.c56 const struct ap_socache_hints *hints,
54 socache_dc_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dsockmisc.c980 struct addrinfo hints, *res; local
984 memset(&hints, 0, sizeof(hints));
985 hints.ai_family = PF_UNSPEC;
986 hints.ai_socktype = SOCK_DGRAM;
987 hints.ai_flags = AI_NUMERICHOST;
988 error = getaddrinfo(host, port, &hints, &res);
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dutil.c1265 struct addrinfo hints, *res; local
1267 memset(&hints, 0, sizeof(hints));
1268 hints.ai_family = PF_INET6;
1269 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
1270 hints.ai_flags = AI_NUMERICHOST;
1271 if (getaddrinfo(addr, "0", &hints, &res) != 0)
H A Dfetch.c483 struct addrinfo hints, *res, *res0 = NULL; local
704 memset(&hints, 0, sizeof(hints));
705 hints.ai_flags = 0;
706 hints.ai_family = family;
707 hints.ai_socktype = SOCK_STREAM;
708 hints.ai_protocol = 0;
709 error = getaddrinfo(host, NULL, &hints, &res0);
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/wsock/wsock20/
H A Ddllfunc.c493 const struct my_addrinfo *hints, struct my_addrinfo **res)
507 err = _org_getaddrinfo(nodename, servname, hints, res);
516 err = _org_getaddrinfo(nodename, servname, hints, &aip);
492 getaddrinfo(const char *nodename, const char *servname, const struct my_addrinfo *hints, struct my_addrinfo **res) argument
/macosx-10.10/OpenSSH-189/openssh/
H A Dchannels.c2729 struct addrinfo hints, *ai, *aitop; local
2755 * set to NULL and hints.ai_flags is not AI_PASSIVE
2757 memset(&hints, 0, sizeof(hints));
2758 hints.ai_family = IPv4or6;
2759 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
2760 hints.ai_socktype = SOCK_STREAM;
2762 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3306 struct addrinfo hints; local
3314 memset(&hints,
3426 struct addrinfo hints, *ai, *aitop; local
3553 struct addrinfo hints, *ai, *aitop; local
[all...]
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Streams/
H A DCIrLSAP.h48 Boolean Init(TIrGlue *irda, UInt32 desiredLSAPId, UInt8 * className, UInt8 * attributeName, ULong hints=0);
148 ULong fHints; // discovery hints set/cleared by this LSAP
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dsetup-os400.h47 const struct addrinfo * hints,
/macosx-10.10/network_cmds-457/ifconfig.tproj/
H A Daf_inet6.c403 struct addrinfo hints, *res; local
422 bzero(&hints, sizeof(struct addrinfo));
423 hints.ai_family = AF_INET6;
424 error = getaddrinfo(s, NULL, &hints, &res);
/macosx-10.10/vim-55/runtime/indent/
H A Dperl.vim8 " Aaron J. Sherman (use syntax for hints)
79 " Without syntax hints, assume that end-of-heredocs markers begin with EO
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/TinyTP/
H A Dttp.cpp82 ULong hints)
126 return super::Init(irda, desiredLSAPId, className, (UInt8 *) kIASTinyTPLSAPSelAttrStr, hints); // Init LSAP
77 TTPInitialize( TIrGlue *irda, UInt32 credit, UInt32 desiredLSAPId, UInt8 * className, ULong hints) argument
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/mac/
H A DWebDragClientMac.mm68 [image drawInRect:NSMakeRect(0, 0, bitmap->size().width(), bitmap->size().height()) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1 respectFlipped:YES hints:nil];
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Dview.h34 * "hints" information.
96 dns_db_t * hints; member in struct:dns_view
363 dns_view_sethints(dns_view_t *view, dns_db_t *hints);
365 * Set the view's hints database.
369 *\li 'view' is a valid, unfrozen view, whose hints database has not been
372 *\li 'hints' is a valid zone database.
376 * \li The hints database of 'view' is 'hints'.
502 *\li If 'use_hints' is ISC_TRUE, and the view has a hints database, then
503 * it will be searched last. If the answer is found in the hints
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/setkey/
H A Dparse.y1440 struct addrinfo hints, *res = NULL;
1443 memset(&hints, 0, sizeof(hints));
1444 hints.ai_family = p_aifamily;
1445 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
1446 hints.ai_protocol = IPPROTO_UDP; /*dummy*/
1447 hints.ai_flags = p_aiflags;
1448 error = getaddrinfo(host, port, &hints, &res);

Completed in 404 milliseconds

12345678910