Searched refs:methnum (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/mappers/
H A Dmod_actions.c114 int methnum; local
117 methnum = ap_method_number_of(method);
123 methnum = ap_method_register(cmd->pool, method);
126 if (methnum == M_TRACE) {
129 else if (methnum == M_INVALID) {
134 m->scripted[methnum] = script;
/httpd/modules/http/
H A Dhttp_protocol.c645 int methnum)
649 *pnum = methnum;
704 int *methnum; local
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); local
943 if (methnum != NULL) {
944 return *methnum;
954 AP_DECLARE(const char *) ap_method_name_of(apr_pool_t *p, int methnum) argument
644 register_one_method(apr_pool_t *p, const char *methname, int methnum) argument
1581 int methnum; local
1613 int methnum; local
1648 int methnum; local
[all...]
/httpd/include/
H A Dhttp_protocol.h647 * @param methnum An integer value corresponding to an internal method number
650 AP_DECLARE(const char *) ap_method_name_of(apr_pool_t *p, int methnum);
/httpd/server/
H A Dconfig.c464 int methnum; local
466 methnum = ap_method_number_of(method);
472 if (methnum != M_INVALID) {
473 return (cmd->limited & (AP_METHOD_BIT << methnum)) ? 1 : 0;
H A Dcore.c2140 int methnum; local
2143 methnum = ap_method_number_of(method);
2145 if (methnum == M_TRACE && !tog) {
2148 else if (methnum == M_INVALID) {
2152 methnum = ap_method_register(cmd->pool,
2156 limited |= (AP_METHOD_BIT << methnum);

Completed in 62 milliseconds