Searched refs:ai (Results 126 - 150 of 314) sorted by relevance

1234567891011>>

/macosx-10.10.1/libsecurity_ldap_dl-55003/lib/
H A DDatabase.h44 Database (AttachedInstance *ai);
H A DLDAPDLModule.h98 LDAPDatabase (AttachedInstance *ai);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/sample/
H A Dclient.c203 struct addrinfo hints, *ai, *r; local
210 if ((err = getaddrinfo(host, port, &hints, &ai)) != 0) {
215 for (r = ai; r; r = r->ai_next) {
225 freeaddrinfo(ai);
/macosx-10.10.1/BerkeleyDB-21/db/repmgr/
H A Drepmgr_msg.c255 ADDRINFO *ai; local
310 addr->host, addr->port, 0, &ai)) == 0)
311 addr->address_list = ai;
H A Drepmgr_net.c1076 ADDRINFO *ai; local
1086 ai = ADDR_LIST_FIRST(&db_rep->my_addr);
1094 DB_ASSERT(env, ai != NULL);
1095 for (; ai != NULL; ai = ADDR_LIST_NEXT(&db_rep->my_addr)) {
1097 if ((s = socket(ai->ai_family,
1098 ai->ai_socktype, ai->ai_protocol)) == INVALID_SOCKET) {
1115 if (bind(s, ai->ai_addr, (socklen_t)ai
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Ddns.c166 struct addrinfo hints, *ai; local
181 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
182 freeaddrinfo(ai);
H A Dsshd.c1057 struct addrinfo *ai; local
1060 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1061 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1066 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
1074 listen_sock = socket(ai
[all...]
/macosx-10.10.1/lukemftp-14/tnftp/src/
H A Dutil.c1357 struct addrinfo *ai; local
1359 for (ai = bindai; ai != NULL; ai = ai->ai_next) {
1360 if (ai->ai_family == name->sa_family)
1363 if (ai == NULL)
1364 ai = bindai;
1365 if (bind(sock, ai->ai_addr, ai
[all...]
/macosx-10.10.1/xnu-2782.1.97/security/
H A Dmac_audit.c165 mac_proc_check_setaudit(struct proc *curp, struct auditinfo_addr *ai) argument
175 MAC_CHECK(proc_check_setaudit, cred, ai);
371 __unused struct auditinfo_addr *ai)
370 mac_proc_check_setaudit(__unused struct proc *curp, __unused struct auditinfo_addr *ai) argument
/macosx-10.10.1/ntp-92/ntpq/
H A Dntpq.c645 struct addrinfo hints, *ai = NULL; local
682 a_info = getaddrinfo(hname, service, &hints, &ai);
692 a_info = getaddrinfo(hname, service, &hints, &ai);
698 a_info = getaddrinfo(hname, service, &hints, &ai);
706 if (ai->ai_canonname == NULL) {
708 stoa((sockaddr_u *)ai->ai_addr),
712 strncpy(temphost, ai->ai_canonname, LENHOSTNAME);
728 s_port = ((struct sockaddr_in6 *)ai->ai_addr)->sin6_port;
731 if (ai->ai_family == AF_INET)
733 *((struct sockaddr_in *)ai
1806 struct addrinfo hints, *ai = NULL; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dcert.c604 AuthorityKeyIdentifier *ai)
610 memset(ai, 0, sizeof(*ai));
618 ai, &size);
916 AuthorityKeyIdentifier ai; local
928 memset(&ai, 0, sizeof(ai));
936 ret_ai = find_extension_auth_key_id(subject, &ai);
951 } else if (ai.keyIdentifier) {
957 if (ai
603 find_extension_auth_key_id(const Certificate *subject, AuthorityKeyIdentifier *ai) argument
1059 AuthorityKeyIdentifier ai; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dhprop.c56 struct addrinfo *ai, *a; local
64 error = getaddrinfo (hostname, port, &hints, &ai);
70 for (a = ai; a != NULL; a = a->ai_next) {
82 freeaddrinfo (ai);
86 freeaddrinfo (ai);
/macosx-10.10.1/OpenSSL098-52/src/apps/
H A Dapps.c1482 ASN1_INTEGER *ai=NULL; local
1484 ai=ASN1_INTEGER_new();
1485 if (ai == NULL) goto err;
1503 if (ret == NULL || !rand_serial(ret, ai))
1509 if (!a2i_ASN1_INTEGER(in,ai,buf,1024))
1515 ret=ASN1_INTEGER_to_BN(ai,NULL);
1525 *retai = ai;
1526 ai = NULL;
1530 if (ai != NULL) ASN1_INTEGER_free(ai);
1539 ASN1_INTEGER *ai=NULL; local
1667 rand_serial(BIGNUM *b, ASN1_INTEGER *ai) argument
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/rsh/
H A Drshd.c919 struct addrinfo *ai = NULL, hints; local
928 error = getaddrinfo (NULL, port_str, &hints, &ai);
932 if (ai == NULL) {
936 error = getaddrinfo(NULL, "ekshell", &hints, &ai);
939 error = getaddrinfo(NULL, portstr, &hints, &ai);
944 error = getaddrinfo(NULL, "kshell", &hints, &ai);
947 error = getaddrinfo(NULL, portstr, &hints, &ai);
955 error = getaddrinfo(NULL, "shell", &hints, &ai);
958 error = getaddrinfo(NULL, portstr, &hints, &ai);
964 mini_inetd_addrinfo (ai, NUL
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlwdgabn.c72 dns_adbaddrinfo_t *ai; local
83 ai = ISC_LIST_HEAD(find->list);
84 while (ai != NULL && client->gabn.naddrs < LWRES_MAX_ADDRS) {
85 sa = &ai->sockaddr.type.sa;
91 result = lwaddr_lwresaddr_fromsockaddr(addr, &ai->sockaddr);
103 ai = ISC_LIST_NEXT(ai, publink);
/macosx-10.10.1/llvmCore-3425.0.34/utils/TableGen/
H A DIntrinsicEmitter.cpp567 for (unsigned ai = 0, ae = intrinsic.ArgumentAttributes.size(); ai != ae;) {
568 unsigned argNo = intrinsic.ArgumentAttributes[ai].first;
578 switch (intrinsic.ArgumentAttributes[ai].second) {
584 ++ai;
586 } while (ai != ae && intrinsic.ArgumentAttributes[ai].first == argNo);
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/telnet/
H A Dcommands.c1580 struct addrinfo hints, *ai, *a;
1585 error = getaddrinfo (hbuf, NULL, &hints, &ai);
1587 for (a = ai; a != NULL; a = a->ai_next)
1590 ai->ai_canonname,
1594 freeaddrinfo (ai);
2165 struct addrinfo *ai, *a, hints;
2176 error = getaddrinfo (hostname, portstr, &hints, &ai);
2182 for (a = ai; a != NULL && connected == 0; a = a->ai_next) {
2244 freeaddrinfo (ai);
2253 freeaddrinfo (ai);
1572 struct addrinfo hints, *ai, *a; local
2157 struct addrinfo *ai, *a, hints; local
2509 sourceroute(struct addrinfo *ai, char *arg, char **cpp, int *protop, int *optp) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/openssl/
H A Dossl_asn1.c105 asn1integer_to_num(ASN1_INTEGER *ai) argument
113 if (!ai) {
116 if (!(bn = ASN1_INTEGER_to_BN(ai, NULL))) {
136 num_to_asn1integer(VALUE obj, ASN1_INTEGER *ai) argument
148 if (!(ai = BN_to_ASN1_INTEGER(bn, ai))) {
153 return ai;
157 num_to_asn1integer(VALUE obj, ASN1_INTEGER *ai) argument
166 if (!(ai = BN_to_ASN1_INTEGER(bn, ai)))
364 ASN1_INTEGER *ai; local
404 ASN1_ENUMERATED *ai; local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/port/
H A Dlc.c440 Lc_attribute_list_t* ai; local
714 if (ai = newof(0, Lc_attribute_list_t, 1, 0))
716 ai->attribute = ap;
717 ai->next = al;
718 al = ai;
724 ai = (Lc_attribute_list_t*)(ap + 1);
725 strcpy((char*)(((Lc_attribute_t*)ap)->name = (const char*)(ai + 1)), w);
726 ai->attribute = ap;
727 ai->next = al;
728 al = ai;
[all...]
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dcusub.c239 int ai[2];
275 if (pipe (ai) < 0)
290 (void) close (ai[0]);
291 uscu_child (qconn, ai[1]);
295 (void) close (ai[1]);
297 oSpipe = ai[0];
236 int ai[2]; local
H A Dstatsb.c97 time_t ai[2];
99 ai[0] = inow;
100 ai[1] = inow;
101 return utime ((char *) z, ai);
/macosx-10.10.1/Heimdal-398.1.2/appl/test/
H A Dhttp_client.c53 struct addrinfo *ai, *a; local
63 error = getaddrinfo (hostname, port, &hints, &ai);
67 for (a = ai; a != NULL; a = a->ai_next) {
79 freeaddrinfo (ai);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dhostip.h158 * Handles end of async request processing. Inserts ai into hostcache when
164 Curl_addrinfo *ai);
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dadb.c1898 dns_adbaddrinfo_t *ai; local
1900 ai = isc_mempool_get(adb->aimp);
1901 if (ai == NULL)
1904 ai->magic = DNS_ADBADDRINFO_MAGIC;
1905 ai->sockaddr = entry->sockaddr;
1906 isc_sockaddr_setport(&ai->sockaddr, port);
1907 ai->srtt = entry->srtt;
1908 ai->flags = entry->flags;
1909 ai->entry = entry;
1910 ISC_LINK_INIT(ai, publin
1917 dns_adbaddrinfo_t *ai; local
3085 dns_adbaddrinfo_t *ai; local
3348 dns_adbaddrinfo_t *ai; local
[all...]
/macosx-10.10.1/NFS-82/rpc.lockd/
H A Dlockd_lock.c2110 struct addrinfo *ailist = NULL, *ai, aihints; local
2121 for (addrcount=0, ai = ailist; ai; ai = ai->ai_next) {
2122 if ((ai->ai_family != AF_INET) && (ai->ai_family != AF_INET6))
2136 ai = ailist;
2137 while (ai && (addrcount > 0)) {
2141 for (; ai
[all...]

Completed in 858 milliseconds

1234567891011>>