Lines Matching refs:methnum
645 int methnum)
649 *pnum = methnum;
704 int *methnum;
717 methnum = (int *)apr_hash_get(methods_registry, methname,
719 if (methnum != NULL)
720 return *methnum;
941 int *methnum = apr_hash_get(methods_registry, method, len);
943 if (methnum != NULL) {
944 return *methnum;
954 AP_DECLARE(const char *) ap_method_name_of(apr_pool_t *p, int methnum)
965 if (*(int *)val == methnum)
1581 int methnum;
1589 methnum = ap_method_number_of(method);
1590 if (methnum != M_INVALID) {
1591 return !!(l->method_mask & (AP_METHOD_BIT << methnum));
1613 int methnum;
1622 methnum = ap_method_number_of(method);
1623 if (methnum != M_INVALID) {
1624 l->method_mask |= (AP_METHOD_BIT << methnum);
1648 int methnum;
1655 methnum = ap_method_number_of(method);
1656 if (methnum != M_INVALID) {
1657 l->method_mask &= ~(AP_METHOD_BIT << methnum);