Searched refs:hints (Results 26 - 50 of 248) sorted by relevance

12345678910

/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_scache.c44 struct ap_socache_hints hints; local
56 memset(&hints, 0, sizeof hints);
57 hints.avg_obj_size = 1500;
58 hints.avg_id_len = 20;
59 hints.expiry_interval = 300;
62 "mod_ssl-stapling", &hints, s, p);
82 memset(&hints, 0, sizeof hints);
83 hints
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/auth/
H A Dauth-01-immediate-agent.c27 AuthorizationEnvironment hints = { 1, &item }; local
38 ok_status(AuthorizationCreate(NULL, &hints, kAuthorizationFlagDefaults, NULL), "force immediate agent launch");
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DCommandLineAPIHost.idl40 [Custom] void inspect(any objectId, any hints);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcurl_addrinfo.h70 const struct addrinfo *hints,
92 const struct addrinfo *hints,
H A Dasyn-thread.c153 const struct addrinfo *hints);
167 struct addrinfo hints; member in struct:thread_sync_data
208 const struct addrinfo *hints)
214 DEBUGASSERT(hints);
215 tsd->hints = *hints;
217 (void) hints;
274 rc = Curl_getaddrinfo_ex(tsd->hostname, service, &tsd->hints, &tsd->res);
345 const struct addrinfo *hints)
360 if(!init_thread_sync_data(&td->tsd, hostname, port, hints))
205 init_thread_sync_data(struct thread_sync_data * tsd, const char * hostname, int port, const struct addrinfo *hints) argument
343 init_resolve_thread(struct connectdata *conn, const char *hostname, int port, const struct addrinfo *hints) argument
559 struct addrinfo hints; local
[all...]
/macosx-10.10/rsync-45/rsync/
H A Daccess.c63 struct addrinfo hints, *resa, *rest; local
97 memset(&hints, 0, sizeof(hints));
98 hints.ai_family = PF_UNSPEC;
99 hints.ai_socktype = SOCK_STREAM;
101 hints.ai_flags = AI_NUMERICHOST;
104 if (getaddrinfo(addr, NULL, &hints, &resa) != 0) {
110 gai = getaddrinfo(tok, NULL, &hints, &rest);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dsocketsupport.m89 struct addrinfo hints, *res;
97 memset(&hints, 0, sizeof(hints));
98 hints.ai_family = af;
99 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
100 hints.ai_flags = AI_PASSIVE;
101 error = getaddrinfo(NULL, "0", &hints, &res);
161 memset(&hints, 0, sizeof(hints));
162 hints
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dsocketsupport.m91 struct addrinfo hints, *res;
99 memset(&hints, 0, sizeof(hints));
100 hints.ai_family = af;
101 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
102 hints.ai_flags = AI_PASSIVE;
103 error = getaddrinfo(NULL, "0", &hints, &res);
163 memset(&hints, 0, sizeof(hints));
164 hints
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dsocketsupport.m91 struct addrinfo hints, *res;
99 memset(&hints, 0, sizeof(hints));
100 hints.ai_family = af;
101 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
102 hints.ai_flags = AI_PASSIVE;
103 error = getaddrinfo(NULL, "0", &hints, &res);
163 memset(&hints, 0, sizeof(hints));
164 hints
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorAgent.cpp90 void InspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<InspectorObject> hints) argument
93 m_frontendDispatcher->inspect(objectToInspect, hints);
100 m_pendingInspectData.second = hints;
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Didn-lookup.c68 struct addrinfo hints; local
110 memset(&hints, 0, sizeof(hints));
111 hints.ai_flags = AI_CANONNAME;
112 ret = getaddrinfo(encoded, NULL, &hints, &ai);
/macosx-10.10/OpenSSH-189/openssh/
H A Dcanohost.c53 struct addrinfo hints, *ai, *aitop; local
92 memset(&hints, 0, sizeof(hints));
93 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
94 hints.ai_flags = AI_NUMERICHOST;
95 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
118 memset(&hints, 0, sizeof(hints));
119 hints.ai_family = from.ss_family;
120 hints
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dmini_inetd.c185 struct addrinfo *ai, hints; local
188 memset (&hints, 0, sizeof(hints));
189 hints.ai_flags = AI_PASSIVE;
190 hints.ai_socktype = SOCK_STREAM;
191 hints.ai_family = PF_UNSPEC;
195 error = getaddrinfo (NULL, portstr, &hints, &ai);
/macosx-10.10/Heimdal-398.1.2/plugins/
H A DReachability.m101 struct addrinfo hints, *ai0, *ai;
166 memset(&hints, 0, sizeof(hints));
167 hints.ai_flags = 0;
168 hints.ai_family = type;
169 hints.ai_socktype = domain;
171 if (getaddrinfo([host UTF8String], [port UTF8String], &hints, &ai0) != 0)
/macosx-10.10/postfix-255/postfix/src/util/
H A Dmyaddrinfo.c424 struct addrinfo hints;
427 memset((char *) &hints, 0, sizeof(hints));
428 hints.ai_family = (pf != PF_UNSPEC) ? pf : inet_proto_info()->ai_family;
429 hints.ai_socktype = service ? socktype : MAI_SOCKTYPE;
431 hints.ai_flags = AI_PASSIVE;
433 switch (hints.ai_family) {
435 hints.ai_family = PF_INET6;
447 err = getaddrinfo(hostname, service, &hints, res);
539 struct addrinfo hints;
[all...]
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dengine.c49 auth_items_t hints; member in struct:_engine_s
84 CFReleaseSafe(engine->hints);
130 engine->hints = auth_items_create();
134 _set_process_hints(engine->hints, engine->proc);
136 _set_auth_token_hints(engine->hints, auth);
169 #pragma mark agent hints
172 _set_process_hints(auth_items_t hints, process_t proc) argument
176 auth_items_set_data(hints, AGENT_HINT_CLIENT_TYPE, &type, sizeof(type));
177 auth_items_set_int(hints, AGENT_HINT_CLIENT_PID, process_get_pid(proc));
178 auth_items_set_uint(hints, AGENT_HINT_CLIENT_UI
189 _set_auth_token_hints(auth_items_t hints, auth_token_t auth) argument
198 _set_right_hints(auth_items_t hints, const char * right) argument
204 _set_rule_hints(auth_items_t hints, rule_t rule) argument
216 _set_localization_hints(authdb_connection_t dbconn, auth_items_t hints, rule_t rule) argument
404 auth_items_t hints = auth_items_create(); local
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/test/
H A Dcommon.c141 struct addrinfo hints; local
145 memset (&hints, 0, sizeof(hints));
146 hints.ai_socktype = SOCK_STREAM;
147 hints.ai_protocol = IPPROTO_TCP;
151 error = getaddrinfo (hostname, portstr, &hints, &ai);
/macosx-10.10/bind9-45.101/bind9/bin/check/
H A Dcheck-tool.c185 struct addrinfo hints, *ai, *cur; local
199 memset(&hints, 0, sizeof(hints));
200 hints.ai_flags = AI_CANONNAME;
201 hints.ai_family = PF_UNSPEC;
202 hints.ai_socktype = SOCK_STREAM;
203 hints.ai_protocol = IPPROTO_TCP;
213 result = getaddrinfo(namebuf, NULL, &hints, &ai);
382 struct addrinfo hints, *ai, *cur; local
389 memset(&hints,
467 struct addrinfo hints, *ai, *cur; local
[all...]
/macosx-10.10/libutil-38/
H A Drealhostname.c119 struct addrinfo hints, *res, *ores; local
122 memset(&hints, 0, sizeof(struct addrinfo));
123 hints.ai_family = addr->sa_family;
124 hints.ai_flags = AI_CANONNAME | AI_PASSIVE;
125 hints.ai_socktype = SOCK_STREAM;
127 error = getaddrinfo(buf, NULL, &hints, &res);
/macosx-10.10/BerkeleyDB-21/db/os/
H A Dos_addrinfo.c29 __os_getaddrinfo(env, nodename, port, servname, hints, res)
33 const ADDRINFO *hints;
39 if ((ret = getaddrinfo(nodename, servname, hints, res)) == 0)
57 COMPQUIET(hints, NULL);
/macosx-10.10/netcat-22/
H A Dsocks.c55 int socks_connect(const char *host, const char *port, struct addrinfo hints,
64 struct addrinfo hints, *res; local
66 bzero(&hints, sizeof(hints));
67 hints.ai_family = v4only ? PF_INET : PF_UNSPEC;
68 hints.ai_flags = numeric ? AI_NUMERICHOST : 0;
69 hints.ai_socktype = SOCK_STREAM;
70 r = getaddrinfo(h, p, &hints, &res);
112 struct addrinfo hints __attribute__ ((__unused__)),
/macosx-10.10/bind9-45.101/bind9/lib/export/samples/
H A Dsample-request.c145 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 gai_error = getaddrinfo(argv[0], "53", &hints, &res);
/macosx-10.10/Heimdal-398.1.2/appl/popper/
H A Dpop_debug.c71 struct addrinfo hints; local
74 memset (&hints, 0, sizeof(hints));
75 hints.ai_socktype = SOCK_STREAM;
77 ret = getaddrinfo (hostname, portstr, &hints, &ai);
/macosx-10.10/Libinfo-459/util.subproj/
H A Drcmd.c120 struct addrinfo hints, *res, *ai; local
133 memset(&hints, 0, sizeof(hints));
134 hints.ai_flags = AI_CANONNAME;
135 hints.ai_family = af;
136 hints.ai_socktype = SOCK_STREAM;
137 hints.ai_protocol = 0;
139 error = getaddrinfo(*ahost, num, &hints, &res);
506 struct addrinfo hints, *res, *r; local
509 memset(&hints,
761 struct addrinfo hints, *res, *r; local
[all...]
/macosx-10.10/smb-759.0/lib/smb/
H A Dnb_net.c51 const struct addrinfo *hints,
195 const struct addrinfo *hints,
222 error = getaddrinfo (temp_name, servname, hints, res);
232 error = getaddrinfo (hostname, servname, hints, res);
245 struct addrinfo hints, *res0, *res; local
254 memset (&hints, 0, sizeof (hints));
255 hints.ai_family = PF_UNSPEC;
256 hints.ai_socktype = SOCK_STREAM;
257 hints
194 getaddrinfo_ipv6(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
365 struct addrinfo hints, *res0, *res; local
[all...]

Completed in 393 milliseconds

12345678910