Symbol: hostlist
crypto/heimdal/lib/kadm5/init_c.c
103
(*ctx)->admin_server = strdup(*hostlist);
crypto/heimdal/lib/kadm5/init_c.c
104
krb5_free_krbhst (context, hostlist);
crypto/heimdal/lib/kadm5/init_c.c
95
char **hostlist;
crypto/heimdal/lib/kadm5/init_c.c
97
ret = krb5_get_krb_admin_hst (context, &(*ctx)->realm, &hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1024
unsigned int type, char ***hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1043
*hostlist = calloc(nhost + 1, sizeof(**hostlist));
crypto/heimdal/lib/krb5/krbhst.c
1044
if(*hostlist == NULL) {
crypto/heimdal/lib/krb5/krbhst.c
1053
if(((*hostlist)[nhost++] = strdup(host)) == NULL) {
crypto/heimdal/lib/krb5/krbhst.c
1054
krb5_free_krbhst(context, *hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1059
(*hostlist)[nhost] = NULL;
crypto/heimdal/lib/krb5/krbhst.c
1071
char ***hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1073
return gethostlist(context, *realm, KRB5_KRBHST_ADMIN, hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1083
char ***hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1085
return gethostlist(context, *realm, KRB5_KRBHST_CHANGEPW, hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1095
char ***hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1097
return gethostlist(context, *realm, KRB5_KRBHST_KRB524, hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1108
char ***hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1110
return gethostlist(context, *realm, KRB5_KRBHST_KDC, hostlist);
crypto/heimdal/lib/krb5/krbhst.c
1119
char **hostlist)
crypto/heimdal/lib/krb5/krbhst.c
1123
for (p = hostlist; *p; ++p)
crypto/heimdal/lib/krb5/krbhst.c
1125
free (hostlist);
crypto/heimdal/lib/krb5/krbhst.c
468
char **hostlist;
crypto/heimdal/lib/krb5/krbhst.c
469
hostlist = krb5_config_get_strings(context, NULL,
crypto/heimdal/lib/krb5/krbhst.c
473
kd->realm, hostlist ? "" : " not");
crypto/heimdal/lib/krb5/krbhst.c
475
if(hostlist == NULL)
crypto/heimdal/lib/krb5/krbhst.c
478
for(i = 0; hostlist && hostlist[i] != NULL; i++)
crypto/heimdal/lib/krb5/krbhst.c
479
append_host_string(context, kd, hostlist[i], kd->def_port, kd->port);
crypto/heimdal/lib/krb5/krbhst.c
481
krb5_config_free_strings(hostlist);
crypto/krb5/src/lib/krb5/os/locate_kdc.c
260
char **hostlist = NULL, *realmstr = NULL, *host = NULL;
crypto/krb5/src/lib/krb5/os/locate_kdc.c
277
code = profile_get_values(context->profile, realm_srv_names, &hostlist);
crypto/krb5/src/lib/krb5/os/locate_kdc.c
281
&hostlist);
crypto/krb5/src/lib/krb5/os/locate_kdc.c
290
for (i = 0; hostlist[i]; i++) {
crypto/krb5/src/lib/krb5/os/locate_kdc.c
295
hostspec = hostlist[i];
crypto/krb5/src/lib/krb5/os/locate_kdc.c
336
profile_free_list(hostlist);
usr.sbin/mountd/mountd.c
1502
struct hostlist *hp;
usr.sbin/mountd/mountd.c
1547
if (gotalldir && hp == (struct hostlist *)NULL) {
usr.sbin/mountd/mountd.c
176
struct hostlist *ht_next;
usr.sbin/mountd/mountd.c
225
static void free_host(struct hostlist *);
usr.sbin/mountd/mountd.c
239
static struct hostlist *get_ht(void);
usr.sbin/mountd/mountd.c
2589
dp->dp_hosts = (struct hostlist *)NULL;
usr.sbin/mountd/mountd.c
2605
struct hostlist *hp;
usr.sbin/mountd/mountd.c
2659
struct hostlist *hp;
usr.sbin/mountd/mountd.c
2737
struct hostlist *hp;
usr.sbin/mountd/mountd.c
3139
free_host(struct hostlist *hp)
usr.sbin/mountd/mountd.c
3141
struct hostlist *hp2;
usr.sbin/mountd/mountd.c
3150
static struct hostlist *
usr.sbin/mountd/mountd.c
3153
struct hostlist *hp;
usr.sbin/mountd/mountd.c
3155
hp = (struct hostlist *)malloc(sizeof (struct hostlist));
usr.sbin/mountd/mountd.c
3156
if (hp == (struct hostlist *)NULL)
usr.sbin/mountd/mountd.c
3158
hp->ht_next = (struct hostlist *)NULL;
usr.sbin/mountd/mountd.c
96
struct hostlist *dp_hosts; /* List of hosts this dir exported to */
usr.sbin/yppush/yppush_main.c
499
struct hostlist *next;
usr.sbin/yppush/yppush_main.c
501
struct hostlist *yppush_hostlist = NULL;
usr.sbin/yppush/yppush_main.c
502
struct hostlist *tmp;
usr.sbin/yppush/yppush_main.c
518
if ((tmp = (struct hostlist *)malloc(sizeof(struct hostlist))) == NULL) {