Lines Matching defs:values

132  * krb5_aprof_getvals()        - Get values from alternate profile.
137 * retdata - Returned data values.
189 char **values;
194 kret = krb5_aprof_getvals (acontext, hierarchy, &values);
199 while (values[idx])
203 valp = values[idx];
205 profile_free_list(values);
235 char **values;
239 if (!(kret = krb5_aprof_getvals(acontext, hierarchy, &values))) {
242 for (idx=0; values[idx]; idx++);
245 valp = values[idx];
249 profile_free_list(values);
276 char **values;
279 if (!(kret = krb5_aprof_getvals(acontext, hierarchy, &values))) {
280 for (lastidx=0; values[lastidx]; lastidx++);
286 *stringp = values[lastidx];
287 values[lastidx] = NULL;
289 *stringp = values[0];
290 values[0] = values[lastidx];
291 values[lastidx] = NULL;
295 profile_free_list(values);
302 * collect all its string values from the alternate profile.
320 char **values;
324 kret = krb5_aprof_getvals(acontext, hierarchy, &values);
326 for (lastidx=0; values[lastidx]; lastidx++);
329 buf_size = strlen(values[0])+3;
330 for (lastidx=1; values[lastidx]; lastidx++){
331 buf_size += strlen(values[lastidx]) + 3;
337 profile_free_list(values);
341 strlcpy(tmp, values[0], buf_size);
342 for (lastidx=1; values[lastidx]; lastidx++){
344 tmp = strcat(tmp, values[lastidx]);
347 profile_free_list(values);
376 char **values;
379 if (!(kret = krb5_aprof_getvals(acontext, hierarchy, &values))) {
382 for (idx=0; values[idx]; idx++);
386 if (sscanf(values[idx], "%d", intp) != 1)
390 profile_free_list(values);
540 * values specified in configuration files and with default values.
549 * values, or NULL
554 * The fields and mask of params_out are filled in with values
556 * values. Only and all fields specified in params_out->mask are
615 * defaults for NULL values.
1303 * Solaris kerberos: updated this code to support default values for
1366 * returns TRUE is the pattern is found in the attr's list of values.
1368 * In conf file the values are separates by commas or whitespaces.