Lines Matching defs:name

99 	char		*name = NULL, *value = NULL, **ret_values = NULL;
114 code = profile_iterator(&state, &name, &value);
115 if (code == 0 && name != NULL) {
125 code2 = add_to_list(&values, name);
136 code2 = add_to_list(&values, name);
146 if (name != NULL) {
147 profile_release_string(name);
148 name = NULL;
164 if (name != NULL)
165 profile_release_string(name);
277 * where realm is the realm name to be added as the default_realm
378 * where domain is the domain name of the associated realm name
379 * where realm is the corresponding realm name for the domain
408 * where realm is the corresponding realm name for the domain
445 * char *name, char ***ret_value)
449 * where name is the name in the realm section requested
450 * where ret_value is a string array of any matching values assigned to name.
452 * Note: if name has not been configured then NULL is returned for ret_value.
455 k5_profile_get_realm_entry(profile_t profile, char *realm, char *name,
461 if (profile == NULL || realm == NULL || name == NULL ||
469 hierarchy[2] = name;
482 * char *name, char **value)
485 * where realm is the target realm for the name-value pair
486 * where name is the name in the realm subsection to add
487 * where value is a string array values to assigned to name. The array is
490 * Note: if the name already exists the set is overwritten with the values
494 k5_profile_add_realm_entry(profile_t profile, char *realm, char *name,
501 if (profile == NULL || realm == NULL || name == NULL || values == NULL)
506 hierarchy[2] = name;
579 * where realm is the realm name associated with the configuration
666 * intermediate entries will be removed matching the realm name
760 * the default_realm, relevant domain_realm mappings with the realm name,
855 * where realm is the realm name (case sensitive) to be inspected.
885 * the realm name argument differs in case from the realm name argument
887 * (val returns the domain/host name)
889 * realm name specified is not found in realms section
960 * before an exact match, which would not match if the name was
1069 * then function uses the system default name, /etc/krb5/krb5.conf
1205 * errcode_t k5_profile_get_libdefaults_entry(profile_t profile, char *name,
1209 * where name is the name of the requested relation
1210 * where ret_value is the value assigned to name
1211 * Note: if name has not been configured, ret_value is set to NULL and
1215 k5_profile_get_libdefaults_entry(profile_t profile, char *name,
1221 if (profile == NULL || name == NULL || ret_value == NULL)
1227 hierarchy[1] = name;
1239 * errcode_t k5_profile_add_libdefaults_entry(profile_t profile char *name,
1243 * where name is the name of the relation to be set
1244 * where value is the value to be assigned to name.
1245 * Note: if the name already exists, the value is overwritten with the value
1249 k5_profile_add_libdefaults_entry(profile_t profile, char *name, char *value)
1254 if (profile == NULL || name == NULL || value == NULL)
1258 hierarchy[1] = name;
1292 for (i = 0; options[i].name; i++) {
1294 actual_section[max_i] = options[i].name;
1338 for (i = 0; options[i].name; i++) {
1340 actual_section[max_i] = options[i].name;