Searched refs:hostlist (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/ruby-104/ruby/test/drb/
H A Dtest_acl.rb22 @hostlist = Array.new(list.size / 2)
23 @hostlist.each_index do |idx|
24 @hostlist[idx] = ["AF_INET", 10000, list[idx * 2 + 1], list[idx * 2]]
28 @hostlist.each do |h|
32 attr_reader(:hostlist, :hosts)
40 @hostlist = HOSTS.hostlist
47 @hostlist.each do |h|
107 @hostlist = HOSTS.hostlist
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-dnssrv/
H A Dreferral.c40 char *hostlist = NULL; local
75 i = ldap_domain2hostlist( domain, &hostlist );
85 hosts = ldap_str2charray( hostlist, " " );
125 if( hostlist != NULL ) ch_free( hostlist );
H A Dsearch.c41 char *hostlist = NULL; local
85 if( ( rc = ldap_domain2hostlist( domain, &hostlist ) ) ) {
93 hosts = ldap_str2charray( hostlist, " " );
236 if( hostlist != NULL ) ch_free( hostlist );
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Ddnssrv.c188 char *hostlist = NULL; local
281 hostlist = (char *) LDAP_REALLOC(hostlist, cur + buflen + 1);
282 if (hostlist == NULL) {
288 hostlist[cur++] = ' ';
290 cur += sprintf(&hostlist[cur], "%s:%hu", host, port);
296 if (hostlist == NULL) {
303 *list = hostlist;
311 if (rc != LDAP_SUCCESS && hostlist != NULL) {
312 LDAP_FREE(hostlist);
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dkrbhst.c770 char **hostlist; local
771 hostlist = krb5_config_get_strings(context, NULL,
775 kd->realm, hostlist ? "" : " not");
777 if(hostlist == NULL)
780 for(i = 0; hostlist && hostlist[i] != NULL; i++)
781 append_host_string(context, kd, hostlist[i], kd->def_port, kd->port);
783 krb5_config_free_strings(hostlist);
1463 unsigned int type, char ***hostlist)
1482 *hostlist
1462 gethostlist(krb5_context context, const char *realm, unsigned int type, char ***hostlist) argument
1508 krb5_get_krb_admin_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1520 krb5_get_krb_changepw_hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1532 krb5_get_krb524hst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1544 krb5_get_krbhst(krb5_context context, const krb5_realm *realm, char ***hostlist) argument
1556 krb5_free_krbhst(krb5_context context, char **hostlist) argument
[all...]
/macosx-10.9.5/bootp-268.1/bootpd.tproj/
H A DMakefile8 cc -Wall -g -arch i386 -arch ppc -DMAIN -I../bootplib -o bootpdfile bootpdfile.c ../bootplib/hostlist.c
14 cc -Wall -g -DTEST_BSDPD -F/System/Library/PrivateFrameworks -I/System/Library/Frameworks/System.framework/PrivateHeaders -I../bootplib -o bsdpd bsdpd.c ../bootplib/subnets.c ../bootplib/cfutil.c ../bootplib/ptrlist.c ../bootplib/util.c ../bootplib/netinfo.c ../bootplib/interfaces.c ../bootplib/bsdplib.c ../bootplib/dhcp_options.c ../bootplib/bootp_transmit.c ../bootplib/NICache.c ../bootplib/nbimages.c ../bootplib/nbsp.c ../bootplib/DNSNameList.c ../bootplib/dynarray.c ../bootplib/in_cksum.c ../bootplib/macnc_options.c ../bootplib/dhcplib.c ../bootplib/inetroute.c ../bootplib/bpflib.c ../bootplib/hostlist.c ../bootplib/host_identifier.c bootplookup.c -framework CoreFoundation -framework OpenDirectory -framework SystemConfiguration -lresolv
/macosx-10.9.5/sudo-72/src/
H A Dgram.y174 %type <member> hostlist
231 | DEFAULTS_HOST hostlist defaults_list {
270 privilege : hostlist '=' cmndspeclist {
272 list2tq(&p->hostlist, $1);
487 hostalias : ALIAS '=' hostlist {
496 hostlist : ophost label
497 | hostlist ',' ophost {
724 while ((m = tq_pop(&priv->hostlist)) != NULL) {
H A Dparse.h98 struct member_list hostlist; /* list of hosts */ member in struct:privilege
H A Dparse.c184 if (hostlist_matches(&priv->hostlist) != ALLOW)
219 host_match = hostlist_matches(&priv->hostlist);
326 if (hostlist_matches(&priv->hostlist) != ALLOW)
381 if (hostlist_matches(&priv->hostlist) != ALLOW)
602 host_match = hostlist_matches(&priv->hostlist);
H A Dtestsudoers.c266 host_match = hostlist_matches(&priv->hostlist);
488 tq_foreach_fwd(&p->hostlist, m) {
489 if (m != tq_first(&p->hostlist))
H A Dgram.c533 "entry : DEFAULTS_HOST hostlist defaults_list",
544 "privilege : hostlist '=' cmndspeclist",
585 "hostalias : ALIAS '=' hostlist",
586 "hostlist : ophost",
587 "hostlist : hostlist ',' ophost",
755 while ((m = tq_pop(&priv->hostlist)) != NULL) {
1159 list2tq(&p->hostlist, yyvsp[-2].member);
H A Dvisudo.c1123 tq_foreach_fwd(&priv->hostlist, m) {
1154 tq_foreach_fwd(&priv->hostlist, m) {
/macosx-10.9.5/CPANInternal-140/Authen-Krb5/
H A DKrb5.xs167 char **hostlist;
173 err = krb5_get_krbhst(context,&realm_data,&hostlist);
174 if (err || !hostlist) XSRETURN_UNDEF;
175 for (i = 0; hostlist[i]; i++) {
176 XPUSHs(sv_2mortal(newSVpv(hostlist[i],
177 strlen(hostlist[i]))));
179 krb5_free_krbhst(context,hostlist);
/macosx-10.9.5/CPANInternal-140/Krb5-1.9/
H A DKrb5.xs185 char **hostlist;
191 err = krb5_get_krbhst(context,&realm_data,&hostlist);
192 if (err || !hostlist) XSRETURN_UNDEF;
193 for (i = 0; hostlist[i]; i++) {
194 XPUSHs(sv_2mortal(newSVpv(hostlist[i],
195 strlen(hostlist[i]))));
197 krb5_free_krbhst(context,hostlist);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/clients/tools/
H A Dcommon.c1211 *hostlist = NULL, local
1226 rc = ldap_domain2hostlist( domain, &hostlist );
1230 "domain=%s into a hostlist\n",
1235 hosts = ldap_str2charray( hostlist, " " );
1239 "hostlist=\"%s\"\n",
1240 hostlist );
1277 ber_memfree( hostlist );
/macosx-10.9.5/autofs-234/automountd/
H A Dautod_parse.c1791 char *hl, hostlist[1024], *hlq, hostlistq[1024]; local
1820 if (getword(hostlist, hostlistq, &wlp, &wlq, ':',
1821 sizeof (hostlist)) == -1)
1823 if (!*hostlist) {
1830 if (strcmp(hostlist, "nfs") != 0)
1905 hl = hostlist; hlq = hostlistq;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/include/
H A Dldap.h1080 char** hostlist ));

Completed in 187 milliseconds