/httpd/modules/proxy/ |
H A D | mod_proxy_fdpass.h | 36 void *context; member in struct:proxy_fdpass_flush
|
H A D | mod_proxy.h | 387 void *context; /* general purpose storage */ member in struct:__anon284 414 void *context; /* general purpose storage */ member in struct:proxy_worker 468 void *context; /* general purpose storage */ member in struct:proxy_balancer 480 void *context; /* general purpose storage */ member in struct:proxy_balancer_method
|
H A D | ajp_msg.c | 242 static APR_INLINE int ajp_log_overflow(ajp_msg_t *msg, const char *context) argument 247 context, msg->pos, msg->len);
|
H A D | proxy_util.c | 887 /* The balancer comparison is a bit trickier. Given the context 1775 (*worker)->context = NULL; 3207 (*runtime)->context = NULL;
|
/httpd/server/mpm/winnt/ |
H A D | child.c | 129 static void mpm_recycle_completion_context(winnt_conn_ctx_t *context) argument 131 /* Recycle the completion context. 133 * - put the context on the queue to be consumed by the accept thread 135 * context->accept_socket may be in a disconnected but reusable 138 if (context) { 139 apr_pool_clear(context->ptrans); 140 context->ba = apr_bucket_alloc_create(context->ptrans); 141 context->next = NULL; 142 ResetEvent(context 158 winnt_conn_ctx_t *context = NULL; local 296 winnt_conn_ctx_t *context = NULL; local 741 winnt_get_connection(winnt_conn_ctx_t *context) argument 793 winnt_conn_ctx_t *context = ap_get_module_config(c->conn_config, local 816 winnt_conn_ctx_t *context = NULL; local [all...] |
/httpd/server/ |
H A D | util_md5.c | 125 AP_DECLARE(char *) ap_md5contextTo64(apr_pool_t *a, apr_md5_ctx_t *context) argument 134 apr_md5_final(digest, context); 152 apr_md5_ctx_t context; local 157 apr_md5_init(&context); 160 apr_md5_update(&context, buf, nbytes); 164 return ap_md5contextTo64(p, &context);
|
H A D | util_expr_private.h | 82 /** The context used by scanner and parser */ 113 int ap_expr_yyparse(ap_expr_parse_ctx_t *context); 114 void ap_expr_yyerror(ap_expr_parse_ctx_t *context, const char *err); 117 void ap_expr_yyset_extra(ap_expr_parse_ctx_t *context, void *scanner);
|
H A D | util_expr_eval.c | 1107 apr_sha1_ctx_t context; local 1113 apr_sha1_init(&context); 1114 apr_sha1_update(&context, arg, strlen(arg)); 1115 apr_sha1_final(sha1, &context); 1866 "%s%s not available in restricted context",
|
H A D | config.c | 1337 ap_conf_vector_t *oldconfig = parms->context; 1339 parms->context = section_vector; 1350 /* restore the context (just in case) */ 1351 parms->context = oldconfig; 1356 parms->context = oldconfig; 2479 * context in which the command is read, then the command is allowed. 2480 * The context is determined as follows:
|
/httpd/include/ |
H A D | util_md5.h | 55 * @param context The context to convert 58 AP_DECLARE(char *) ap_md5contextTo64(apr_pool_t *p, apr_md5_ctx_t *context);
|
H A D | http_config.h | 318 * server context (path == NULL) or being called in a dir context 325 struct ap_conf_vector_t *context; member in struct:cmd_parms_struct 840 * .htaccess context and use a lower maximum line length. 855 * context and use a lower maximum line length. 872 * context and use a lower maximum line length. 891 * @defgroup ap_check_cmd_context Check command context 895 * Check the context a command is used in.
|
H A D | httpd.h | 1185 /** context of this connection */ 1343 void *context; member in struct:server_rec
|
/httpd/modules/aaa/ |
H A D | mod_authn_socache.c | 39 const char *context; member in struct:authn_cache_dircfg 201 ret->context = directory; 210 /* preserve context and timeout if not defaults */ 211 if (add->context == directory) { 212 ret->context = base->context; 257 (void*)APR_OFFSETOF(authn_cache_dircfg, context), 262 static const char *construct_key(request_rec *r, const char *context, argument 265 /* handle "special" context values */ 266 if (!strcmp(context, "director [all...] |
H A D | mod_authz_core.c | 511 errmsg = ap_walk_config(cmd->directive->first_child, cmd, cmd->context);
|
/httpd/modules/proxy/examples/ |
H A D | mod_lbmethod_rr.c | 57 if (!balancer->context) { 60 balancer->context = (void *)ctx; 65 ctx = (rr_data *)balancer->context;
|
/httpd/support/ |
H A D | htdigest.c | 128 apr_md5_ctx_t context; local 152 apr_md5_init(&context); 154 apr_md5_set_xlate(&context, to_ascii); 156 apr_md5_update(&context, (unsigned char *) string, strlen(string)); 157 apr_md5_final(digest, &context);
|
H A D | htcacheclean.c | 1232 apr_md5_ctx_t context; local 1240 apr_md5_init(&context); 1241 apr_md5_update(&context, (const unsigned char *) url, strlen(url)); 1242 apr_md5_final(digest, &context);
|
/httpd/modules/cache/ |
H A D | mod_socache_dc.c | 38 /* distcache client context: */ 42 static const char *socache_dc_create(ap_socache_instance_t **context, argument 48 ctx = *context = apr_palloc(p, sizeof *ctx); 78 ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO(00738) "distributed scache failed to obtain context"); 81 ap_log_error(APLOG_MARK, APLOG_INFO, 0, s, APLOGNO(00739) "distributed scache context initialised"); 105 /* Send the serialised session to the distributed cache context */ 122 /* Retrieve any corresponding session from the distributed cache context */ 140 /* Remove any corresponding session from the distributed cache context */
|
H A D | mod_socache_memcache.c | 64 static const char *socache_mc_create(ap_socache_instance_t **context, argument 70 *context = ctx = apr_palloc(p, sizeof *ctx); 172 static void socache_mc_destroy(ap_socache_instance_t *context, server_rec *s) argument
|
H A D | cache_util.c | 853 apr_md5_ctx_t context; local 861 apr_md5_init(&context); 862 apr_md5_update(&context, (const unsigned char *) it, strlen(it)); 863 apr_md5_final(digest, &context);
|
H A D | mod_socache_dbm.c | 42 /* Use of the context structure must be thread-safe after the initial 79 static const char *socache_dbm_create(ap_socache_instance_t **context, argument 85 *context = ctx = apr_pcalloc(p, sizeof *ctx);
|
H A D | mod_socache_shmcb.c | 285 static const char *socache_shmcb_create(ap_socache_instance_t **context, argument 292 /* Allocate the context. */ 293 *context = ctx = apr_pcalloc(p, sizeof *ctx);
|
/httpd/modules/dav/main/ |
H A D | std_liveprop.c | 185 int operation, void **context, 183 dav_core_patch_validate(const dav_resource *resource, const apr_xml_elem *elem, int operation, void **context, int *defer_to_dead) argument
|
H A D | mod_dav.h | 227 ** the context of the compute_desc function (so the function can figure out 597 ** Some providers may need to associate a context with the dav_provider 598 ** structure -- the ctx field is available for storing this context. Just 776 ** ### we may need more context... ie. the lock database 823 ** The provider may return a value in *context which will be passed 835 void **context, 842 void *context, 848 void *context, 854 void *context, 858 ** If a provider needs a context t [all...] |
/httpd/modules/dav/fs/ |
H A D | repos.c | 44 /* context needed to identify a resource */ 52 /* private context for doing a filesystem walk */ 681 /* Create private resource context descriptor */ 804 /* Create private resource context descriptor */ 1499 /* ensure the context is prepared properly, then call the func */ 2034 void **context, 2084 *context = (void *)((long)(value == 'T')); 2099 void *context, 2102 long value = context != NULL; 2126 /* update the resource and set up the rollback context */ 2031 dav_fs_patch_validate(const dav_resource *resource, const apr_xml_elem *elem, int operation, void **context, int *defer_to_dead) argument 2096 dav_fs_patch_exec(const dav_resource *resource, const apr_xml_elem *elem, int operation, void *context, dav_liveprop_rollback **rollback_ctx) argument 2133 dav_fs_patch_commit(const dav_resource *resource, int operation, void *context, dav_liveprop_rollback *rollback_ctx) argument 2141 dav_fs_patch_rollback(const dav_resource *resource, int operation, void *context, dav_liveprop_rollback *rollback_ctx) argument [all...] |