Lines Matching defs:values
1281 * Get values for the provided sub-group attributes.
1287 char **values;
1290 /* Get *all* matching "member" values from this group. */
1291 values = ldap_get_values(ldc->ldap, entry, subgroupAttrs[indx]);
1293 if (values) {
1300 while (values[val_index]) {
1307 values[val_index],
1319 *newgrp = apr_pstrdup(r->pool, values[val_index]);
1323 ldap_value_free(values);
1833 * Get values for the provided attributes.
1842 char **values;
1845 /* get values */
1846 values = ldap_get_values(ldc->ldap, entry, attrs[i]);
1847 while (values && values[j]) {
1848 str = str ? apr_pstrcat(r->pool, str, "; ", values[j], NULL)
1849 : apr_pstrdup(r->pool, values[j]);
1852 ldap_value_free(values);
2042 * Get values for the provided attributes.
2051 char **values;
2054 /* get values */
2055 values = ldap_get_values(ldc->ldap, entry, attrs[i]);
2056 while (values && values[j]) {
2057 str = str ? apr_pstrcat(r->pool, str, "; ", values[j], NULL)
2058 : apr_pstrdup(r->pool, values[j]);
2061 ldap_value_free(values);
3161 "Enable debugging in LDAP SDK (Default: off, values: SDK specific"),