Lines Matching refs:method
73 int *satisfy; /* for every method one */
242 static int find_allowdeny(request_rec *r, apr_array_header_t *a, int method)
246 apr_int64_t mmask = (AP_METHOD_BIT << method);
319 int method = r->method_number;
324 if (a->order[method] == ALLOW_THEN_DENY) {
326 if (find_allowdeny(r, a->allows, method)) {
329 if (find_allowdeny(r, a->denys, method)) {
333 else if (a->order[method] == DENY_THEN_ALLOW) {
334 if (find_allowdeny(r, a->denys, method)) {
337 if (find_allowdeny(r, a->allows, method)) {
342 if (find_allowdeny(r, a->allows, method)
343 && !find_allowdeny(r, a->denys, method)) {