Lines Matching refs:value

99 	char		*name = NULL, *value = NULL, **ret_values = NULL;
114 code = profile_iterator(&state, &name, &value);
117 if (key != NULL && value != NULL) {
118 boolean_t ex_match = strcmp(key, value) ?
120 boolean_t match = strcasecmp(key, value) ?
150 if (value != NULL) {
151 profile_release_string(value);
152 value = NULL;
166 if (value != NULL)
167 profile_release_string(value);
482 * char *name, char **value)
485 * where realm is the target realm for the name-value pair
487 * where value is a string array values to assigned to name. The array is
879 * kdc relation-value does not exist for specified realm
882 * admin_server relation-value does not exist for specified realm
891 * where val is the associated errant value, associated with val_err. This
892 * value is returned as is from the profile.
893 * where master_required is a boolean value to determine whether admin_server
895 * where kdc_rqeuired is a boolean value to determine whether kdc entries should
903 * Note: The return value of this function is based on the error code returned
1210 * where ret_value is the value assigned to name
1240 * char **value)
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)
1266 code = profile_add_relation(profile, hierarchy, value);
1283 char *value = NULL;
1296 (char **)&value);
1302 if ((retval == 0) && value) {
1307 if (strncmp(value, "true", 4) == 0)
1308 *(options[i].value) = 1;
1310 *(options[i].value) = 0;
1329 char *value = NULL;
1342 (char **)&value);
1348 if ((retval == 0) && value) {
1349 *options[i].value = malloc(strlen(value)+1);
1350 if (*options[i].value == 0)
1352 strcpy(*options[i].value, value);
1355 *options[i].value = 0;