Lines Matching defs:domains
175 k5_profile_get_domain_realm(profile_t profile, char *realm, char ***domains,
178 if (profile == NULL || realm == NULL || domains == NULL)
182 domains, case_ins));
417 char **domains = NULL, **domain = NULL;
426 code = k5_profile_get_domain_realm(profile, realm, &domains, B_FALSE);
427 if (code == 0 && domains != NULL) {
428 for (domain = domains; *domain; domain++) {
437 if (domains != NULL)
438 profile_free_list(domains);
918 char **trealms = NULL, **domains = NULL, **ret_vals = NULL;
964 &domains, B_TRUE);
965 if (code == 0 && domains != NULL) {
967 if ((*val = strdup(*domains)) == NULL)
970 } else if (code == 0 && domains == NULL) {
972 *trealms, &domains, B_FALSE);
973 if (code == 0 && domains != NULL) {
974 profile_free_list(domains);
975 domains = NULL;
976 } else if (code == 0 && domains == NULL) {
1059 if (domains != NULL)
1060 profile_free_list(domains);