Searched refs:hints (Results 101 - 125 of 248) sorted by relevance

12345678910

/macosx-10.10/bind9-45.101/bind9/lib/export/samples/
H A Dsample-update.c88 struct addrinfo hints, *res; local
179 memset(&hints, 0, sizeof(hints));
180 hints.ai_family = AF_UNSPEC;
181 hints.ai_socktype = SOCK_DGRAM;
182 hints.ai_protocol = IPPROTO_UDP;
183 hints.ai_flags = AI_NUMERICHOST;
184 gai_error = getaddrinfo(auth_server, "53", &hints, &res);
201 memset(&hints, 0, sizeof(hints));
[all...]
/macosx-10.10/network_cmds-457/traceroute6.tproj/
H A Dtraceroute6.c365 struct addrinfo hints, *res; local
591 memset(&hints, 0, sizeof(hints));
592 hints.ai_family = PF_INET6;
593 hints.ai_socktype = SOCK_RAW;
594 hints.ai_protocol = IPPROTO_ICMPV6;
595 hints.ai_flags = AI_CANONNAME;
596 error = getaddrinfo(*argv, NULL, &hints, &res);
792 struct addrinfo hints, *res; local
795 memset(&hints,
[all...]
/macosx-10.10/ruby-106/ruby/ext/socket/
H A Dgetaddrinfo.c162 "invalid value for hints.", /* EAI_BADHINTS */
267 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
308 if (hints) {
309 /* error check for hints */
310 if (hints->ai_addrlen || hints->ai_canonname ||
311 hints->ai_addr || hints->ai_next)
313 if (hints->ai_flags & ~AI_MASK)
315 switch (hints
[all...]
H A Dsocket.c1162 struct addrinfo hints, *res; local
1167 MEMZERO(&hints, struct addrinfo, 1);
1168 hints.ai_family = NIL_P(family) ? PF_UNSPEC : rsock_family_arg(family);
1171 hints.ai_socktype = rsock_socktype_arg(socktype);
1174 hints.ai_protocol = NUM2INT(protocol);
1177 hints.ai_flags = NUM2INT(flags);
1182 res = rsock_getaddrinfo(host, port, &hints, 0);
1218 struct addrinfo hints, *res = NULL, *r; local
1246 MEMZERO(&hints, struct addrinfo, 1);
1265 hints
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dsshconnect.c198 struct addrinfo hints, *res; local
227 memset(&hints, 0, sizeof(hints));
228 hints.ai_family = ai->ai_family;
229 hints.ai_socktype = ai->ai_socktype;
230 hints.ai_protocol = ai->ai_protocol;
231 hints.ai_flags = AI_PASSIVE;
232 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
352 struct addrinfo hints, *ai, *aitop; local
362 memset(&hints,
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/irs/
H A Dgetaddrinfo.c47 * hints is an optional pointer to a struct addrinfo. This structure can
48 * be used to provide hints concerning the type of socket that the caller
50 * structure elements in *hints:
93 * All other elements of the struct addrinfo passed via hints must be
96 * A hints of NULL is treated as if the caller provided a struct addrinfo
192 const struct addrinfo *hints, struct addrinfo **res)
207 if (hints != NULL) {
208 if ((hints->ai_flags & ~(ISC_AI_MASK)) != 0)
210 if (hints->ai_addrlen || hints
191 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
H A Dresconf.c206 struct addrinfo hints, *res; local
210 memset(&hints, 0, sizeof(hints));
211 hints.ai_family = AF_UNSPEC;
212 hints.ai_socktype = SOCK_DGRAM;
213 hints.ai_protocol = IPPROTO_UDP;
214 hints.ai_flags = AI_NUMERICHOST;
215 error = getaddrinfo(address_str, "53", &hints, &res);
/macosx-10.10/ipsec-286.1.1/ipsec-tools/libipsec/
H A Dpolicy_parse.y398 struct addrinfo hints, *res;
429 memset(&hints, 0, sizeof(hints));
430 hints.ai_family = PF_UNSPEC;
431 hints.ai_flags = AI_NUMERICHOST;
432 hints.ai_socktype = SOCK_DGRAM;
433 error = getaddrinfo(addr, serv, &hints, &res);
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXWm.c218 wmPtr->hints.flags = InputHint | StateHint;
219 wmPtr->hints.input = True;
220 wmPtr->hints.initial_state = NormalState;
221 wmPtr->hints.icon_pixmap = None;
222 wmPtr->hints.icon_window = None;
223 wmPtr->hints.icon_x = wmPtr->hints.icon_y = 0;
224 wmPtr->hints.icon_mask = None;
225 wmPtr->hints.window_group = None;
355 if (wmPtr->hints
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dkrbhst.c613 * create a getaddrinfo `hints' based on `proto'
617 make_hints(struct addrinfo *hints, int proto) argument
619 memset(hints, 0, sizeof(*hints));
620 hints->ai_family = AF_UNSPEC;
623 hints->ai_socktype = SOCK_DGRAM;
628 hints->ai_socktype = SOCK_STREAM;
650 struct addrinfo hints; local
655 make_hints(&hints, host->proto);
662 hints
823 struct addrinfo hints; local
897 struct addrinfo hints, *ai; local
[all...]
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXWm.c510 wmPtr->hints.flags = InputHint | StateHint;
511 wmPtr->hints.input = True;
512 wmPtr->hints.initial_state = NormalState;
513 wmPtr->hints.icon_pixmap = None;
514 wmPtr->hints.icon_window = None;
515 wmPtr->hints.icon_x = wmPtr->hints.icon_y = 0;
516 wmPtr->hints.icon_mask = None;
517 wmPtr->hints.window_group = None;
648 if (wmPtr->hints
[all...]
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dhprop.c57 struct addrinfo hints; local
60 memset (&hints, 0, sizeof(hints));
61 hints.ai_socktype = SOCK_STREAM;
62 hints.ai_protocol = IPPROTO_TCP;
64 error = getaddrinfo (hostname, port, &hints, &ai);
/macosx-10.10/ntp-92/ntpdc/
H A Dntpdc.c460 struct addrinfo hints, *ai = NULL; local
491 memset((char *)&hints, 0, sizeof(struct addrinfo));
492 hints.ai_family = ai_fam_templ;
493 hints.ai_protocol = IPPROTO_UDP;
494 hints.ai_socktype = SOCK_DGRAM;
495 hints.ai_flags = AI_NUMERICHOST;
497 a_info = getaddrinfo(hname, service, &hints, &ai);
503 hints.ai_flags = AI_CANONNAME;
505 hints.ai_flags |= AI_ADDRCONFIG;
507 a_info = getaddrinfo(hname, service, &hints,
1494 struct addrinfo hints, *ai = NULL; local
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/rsh/
H A Drshd.c919 struct addrinfo *ai = NULL, hints; local
922 memset (&hints, 0, sizeof(hints));
923 hints.ai_flags = AI_PASSIVE;
924 hints.ai_socktype = SOCK_STREAM;
925 hints.ai_family = PF_UNSPEC;
928 error = getaddrinfo (NULL, port_str, &hints, &ai);
936 error = getaddrinfo(NULL, "ekshell", &hints, &ai);
939 error = getaddrinfo(NULL, portstr, &hints, &ai);
944 error = getaddrinfo(NULL, "kshell", &hints,
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCommandLineAPIHostCustom.cpp139 Deprecated::ScriptValue hints(exec->vm(), exec->uncheckedArgument(1));
140 impl().inspectImpl(object.toInspectorValue(exec), hints.toInspectorValue(exec));
/macosx-10.10/remote_cmds-47/tftp.tproj/
H A Dmain.c236 struct addrinfo hints, *res0, *res; local
247 memset(&hints, 0, sizeof(hints));
248 hints.ai_family = PF_UNSPEC;
249 hints.ai_socktype = SOCK_DGRAM;
250 hints.ai_protocol = IPPROTO_UDP;
251 hints.ai_flags = AI_CANONNAME;
254 error = getaddrinfo(host, port, &hints, &res0);
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinWm.c176 XWMHints hints; /* Various pieces of information for window member in struct:TkWmInfo
179 * (corresponds to hints.window_group).
299 * WM_UPDATE_SIZE_HINTS - Non-zero means that new size hints need to be
2001 wmPtr->hints.flags = InputHint | StateHint;
2002 wmPtr->hints.input = True;
2003 wmPtr->hints.initial_state = NormalState;
2004 wmPtr->hints.icon_pixmap = None;
2005 wmPtr->hints.icon_window = None;
2006 wmPtr->hints.icon_x = wmPtr->hints
[all...]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DCommandLineAPIHost.h98 void inspectImpl(PassRefPtr<Inspector::InspectorValue> objectToInspect, PassRefPtr<Inspector::InspectorValue> hints);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcurl_addrinfo.c115 const struct addrinfo *hints,
128 error = getaddrinfo(nodename, servname, hints, &aihead);
512 const struct addrinfo *hints,
516 int res=(getaddrinfo)(hostname, service, hints, result);
113 Curl_getaddrinfo_ex(const char *nodename, const char *servname, const struct addrinfo *hints, Curl_addrinfo **result) argument
510 curl_dogetaddrinfo(const char *hostname, const char *service, const struct addrinfo *hints, struct addrinfo **result, int line, const char *source) argument
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinWm.c167 XWMHints hints; /* Various pieces of information for member in struct:TkWmInfo
170 * (corresponds to hints.window_group).
290 * WM_UPDATE_SIZE_HINTS - non-zero means that new size hints need to be
1874 wmPtr->hints.flags = InputHint | StateHint;
1875 wmPtr->hints.input = True;
1876 wmPtr->hints.initial_state = NormalState;
1877 wmPtr->hints.icon_pixmap = None;
1878 wmPtr->hints.icon_window = None;
1879 wmPtr->hints.icon_x = wmPtr->hints
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/queryperf/
H A Dqueryperf.c390 struct addrinfo hints, *res; local
399 memset(&hints, 0, sizeof(hints));
400 hints.ai_family = family;
401 hints.ai_socktype = SOCK_DGRAM;
402 hints.ai_protocol = proto->p_proto;
404 &hints, &res)) != 0) {
745 struct addrinfo hints, *res; local
747 memset(&hints, 0, sizeof(hints));
[all...]
/macosx-10.10/network_cmds-457/ndp.tproj/
H A Dndp.c392 struct addrinfo hints, *res; local
403 bzero(&hints, sizeof (hints));
404 hints.ai_family = AF_INET6;
405 gai_error = getaddrinfo(host, NULL, &hints, &res);
469 struct addrinfo hints, *res; local
473 bzero(&hints, sizeof (hints));
474 hints.ai_family = AF_INET6;
475 gai_error = getaddrinfo(host, NULL, &hints,
507 struct addrinfo hints, *res; local
[all...]
/macosx-10.10/Security-57031.1.35/securityd/libsecurity_agent/lib/
H A Dagentclient.cpp280 AuthorizationItemSet *hints, *context; local
283 mInHints.copy(hints, hintSize);
291 hints, hintSize, hints,
297 free (hints);
381 // construct AuthItemSet for hints and context (deep copy - previous contents are released)
/macosx-10.10/Security-57031.1.35/securityd/libsecurity_agent/security_agent_client/
H A Dagentclient.cpp280 AuthorizationItemSet *hints, *context; local
283 mInHints.copy(hints, hintSize);
291 hints, hintSize, hints,
297 free (hints);
381 // construct AuthItemSet for hints and context (deep copy - previous contents are released)
/macosx-10.10/Security-57031.1.35/securityd/security_agent_client/
H A Dagentclient.cpp280 AuthorizationItemSet *hints, *context; local
283 mInHints.copy(hints, hintSize);
291 hints, hintSize, hints,
297 free (hints);
381 // construct AuthItemSet for hints and context (deep copy - previous contents are released)

Completed in 595 milliseconds

12345678910