Searched defs:groups (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/aaa/
H A Dmod_authz_dbd.c198 apr_array_header_t *groups)
227 group = apr_array_push(groups);
242 "authz_dbd, in groups query for %s [%s]",
255 apr_array_header_t *groups = NULL; local
269 if (groups == NULL) {
270 groups = apr_array_make(r->pool, 4, sizeof(const char*));
271 rv = authz_dbd_group_query(r, cfg, groups);
288 for (i=0; i < groups->nelts; ++i) {
289 if (!strcmp(w, ((const char**)groups->elts)[i])) {
197 authz_dbd_group_query(request_rec *r, authz_dbd_cfg *cfg, apr_array_header_t *groups) argument
H A Dmod_authz_dbm.c148 const char *groups; local
166 user, conf->grpfile, conf->dbmtype, &groups);
175 if (groups == NULL) {
176 /* no groups available, so exit immediately */
184 orig_groups = groups;
197 groups = orig_groups;
198 while (groups[0]) {
199 v = ap_getword(r->pool, &groups, ',');
226 const char *groups; local
241 user, conf->grpfile, conf->dbmtype, &groups);
[all...]
/httpd/modules/generators/
H A Dmod_info.c716 apr_array_header_t *groups = ap_list_provider_groups(r->pool); local
723 qsort(groups->elts, groups->nelts, sizeof(ap_list_provider_groups_t),
727 for (i = 0; i < groups->nelts; i++) {
728 group = &APR_ARRAY_IDX(groups, i, ap_list_provider_groups_t);

Completed in 13 milliseconds