/httpd/modules/lua/ |
H A D | lua_config.c | 62 ap_lua_mapped_handler_spec *handler = local 64 handler->uri_pattern = NULL; 65 handler->function_name = NULL; 71 handler->file_name = apr_pstrdup(cfg->pool, file); 72 handler->uri_pattern = uri_pattern; 73 handler->scope = apl_toscope(scope); 75 handler->function_name = apr_pstrdup(cfg->pool, function); 77 handler; 85 ap_lua_mapped_handler_spec *handler = local 87 handler [all...] |
/httpd/modules/mappers/ |
H A D | mod_alias.c | 43 char *handler; member in struct:__anon228 58 char *handler; member in struct:__anon230 108 a->handler = (overrides->alias_set == 0) ? base->handler : overrides->handler; 155 new->handler = cmd->info; 172 alias->handler ? "Script" : "", 213 dirconf->handler = cmd->info; 463 if (dirconf->handler) { /* Set handler, an [all...] |
/httpd/modules/http/ |
H A D | mod_mime.c | 65 char *handler; /* Added with AddHandler... */ member in struct:extension_info 156 if (overlay_info->handler) { 157 new_info->handler = overlay_info->handler; 287 * Note handler names are un-added with each per_dir_config merge. 377 (void *)APR_OFFSETOF(extension_info, handler), OR_FILEINFO, 378 "a handler name followed by one or more file extensions"), 405 (void *)APR_OFFSETOF(extension_info, handler), OR_FILEINFO, 888 if (exinfo->handler && r->proxyreq == PROXYREQ_NONE) { 889 r->handler [all...] |
/httpd/modules/proxy/ |
H A D | mod_serf.c | 357 serf_response_handler_t *handler, 396 *handler = handle_response; 352 setup_request(serf_request_t *request, void *vbaton, serf_bucket_t **req_bkt, serf_response_acceptor_t *acceptor, void **acceptor_baton, serf_response_handler_t *handler, void **handler_baton, apr_pool_t *pool) argument
|
/httpd/include/ |
H A D | http_core.h | 245 * Install a custom response handler for a given status 557 const char *handler; /* forced with SetHandler */ member in struct:__anon21 919 * callback function prototype for a external errorlog handler 922 * handler absolutely needs a pool to pass to other functions, it must create 929 * Register external errorlog handler 932 * @param handler the handler function 936 ap_errorlog_handler_fn_t *handler,
|
H A D | httpd.h | 654 /** Default for r->handler if no content-type set by type_checker */ 849 * A handler must ensure that the request method is one that 852 * handler like this the handler should set r->allowed to the list 864 * handler can't be installed by mod_actions. 931 /* content_type, handler, content_encoding, and all content_languages 937 /** The handler string that we use to call a handler function */ 938 const char *handler; /* What we *really* dispatch on */ member in struct:request_rec 973 * Flag for the handler t [all...] |
/httpd/modules/loggers/ |
H A D | mod_log_config.c | 436 return ap_escape_logitem(r->pool, r->handler); 961 ap_log_handler *handler = NULL; local 1033 handler = (ap_log_handler *)apr_hash_get(log_hash, s, 3); 1034 if (handler) { 1038 if (!handler) { 1039 handler = (ap_log_handler *)apr_hash_get(log_hash, s++, 1); 1041 if (!handler) { 1049 it->func = handler->func; 1051 it->want_orig = handler->want_orig_default; 1597 ap_log_handler_fn_t *handler, in 1596 ap_register_log_handler(apr_pool_t *p, char *tag, ap_log_handler_fn_t *handler, int def) argument [all...] |
/httpd/server/ |
H A D | config.c | 79 APR_HOOK_LINK(handler) 169 AP_IMPLEMENT_HOOK_RUN_FIRST(int, handler, (request_rec *r), 381 const char *handler; local 384 const char *old_handler = r->handler; 410 if (!r->handler) { 412 handler = r->content_type; 413 if ((p=ap_strchr_c(handler, ';')) != NULL) { 414 char *new_handler = (char *)apr_pmemdup(r->pool, handler, 415 p - handler + 1); 416 char *p2 = new_handler + (p - handler); [all...] |
H A D | core.c | 178 * conf->handler = NULL; 354 if (new->handler) { 355 conf->handler = new->handler; 3924 ap_errorlog_handler *handler; local 3985 handler = (ap_errorlog_handler *)apr_hash_get(errorlog_hash, s, 1); 3986 if (!handler) { 3994 it->func = handler->func; 4145 ap_errorlog_handler_fn_t *handler, 4149 log_struct->func = handler; 4144 ap_register_errorlog_handler(apr_pool_t *p, char *tag, ap_errorlog_handler_fn_t *handler, int flags) argument [all...] |