| /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 375 unsigned char val[MAX_VAL_LEN]; local 420 unsigned char val[MAX_VAL_LEN]; local [all...] |
| /httpd/modules/cache/ |
| H A D | cache_util.c | 851 static void cache_hash(const char *it, char *val, int ndepth, int nlength) argument 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); 884 memcpy(&val[i], &tmp[k], nlength); 886 val[i + nlength] = '/'; 889 memcpy(&val[i], &tmp[k], 22 - k); 890 val[i + 22 - k] = '\0'; 1301 static int cache_table_getm_do(void *v, const char *key, const char *val) argument [all...] |
| H A D | mod_socache_shmcb.c | 186 #define SHMCB_CYCLIC_INCREMENT(val,inc,mod) \ 187 (((val) + (inc)) % (mod)) 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/include/ |
| 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 503 * @param val The module-specific data to set 506 void *val); 512 #define ap_set_module_config(v,m,val) \ 513 ((((void **)(v))[(m)->module_index]) = (val)) 600 * Set all module-specific loglevels to val 602 * @param val the value to set all loglevels to 604 AP_DECLARE(void) ap_reset_module_loglevels(struct ap_logconf *l, int val); [all...] |
| /httpd/server/ |
| H A D | util_expr_eval.c | 224 const ap_expr_t *val = arg->node_arg1; local 226 *new = ap_expr_eval_word(ctx, val); 285 const ap_expr_t *val = e2->node_arg1; local 287 if (strcmp(needle, ap_expr_eval_word(ctx, val)) == 0) 498 const ap_expr_t *val = arg->node_arg1; local 499 if (val->node_op == op_String) { 500 parms.arg = val->node_arg1; 1107 apr_sha1_ctx_t context; local 1113 apr_sha1_init(&context); 1114 apr_sha1_update(&context, ar [all...] |
| H A D | core.c | 90 (apr_pool_t *p, const char *val, apr_hash_t *ht), 91 (p, val, ht), OK, DECLINED) 446 /* A mapping only makes sense in the global context */ 464 /* initialization, no special case for global context */ 1346 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL); 1373 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL); 2176 errmsg = ap_walk_config(cmd->directive->first_child, cmd, cmd->context); 3502 int val = 0; local 3505 val = AP_MAXRANGES_NORANGES; 3508 val 3528 int val = 0; local 3554 int val = 0; local 5201 const char *val = NULL; local [all...] |
| 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; 1537 AP_DECLARE(void) ap_reset_module_loglevels(struct ap_logconf *l, int val) argument 1540 memset(l->module_levels, val, conf_vector_length); 2479 * context in which the command is read, then the command is allowed. 2480 * The context is determined as follows:
|
| /httpd/support/ |
| H A D | htcacheclean.c | 256 static apr_size_t round_up(apr_size_t val, apr_off_t round) { argument 258 return (apr_size_t)(((val + round - 1) / round) * round); 260 return val; 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/proxy/ |
| 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; 3280 static int find_conn_headers(void *data, const char *key, const char *val) argument 3283 x->error = ap_parse_token_list_strict(x->pool, val, &x->array, !x->is_req); 3472 const char *val; local 3483 if (((val = apr_table_get(r->headers_in, "Expect")) == NULL) 3484 || (strcasecmp(val, "100-Continue") != 0 /* fast path */ 3485 && !ap_find_token(r->pool, val, "100-Continue"))) { 3546 || headers_in[counter].val [all...] |