Lines Matching defs:x_cfg
107 typedef struct x_cfg {
120 } x_cfg;
281 static x_cfg *our_dconfig(const request_rec *r)
283 return (x_cfg *) ap_get_module_config(r->per_dir_config, &example_hooks_module);
295 static x_cfg *our_sconfig(const server_rec *s)
297 return (x_cfg *) ap_get_module_config(s->module_config, &example_hooks_module);
303 static x_cfg *our_rconfig(const request_rec *r)
305 return (x_cfg *) ap_get_module_config(r->request_config, &example_hooks_module);
312 static x_cfg *our_cconfig(const conn_rec *c)
314 return (x_cfg *) ap_get_module_config(c->conn_config, &example_hooks_module);
347 static void trace_startup(apr_pool_t *p, server_rec *s, x_cfg *mconfig,
396 x_cfg *cfg;
443 x_cfg *cfg;
523 x_cfg *cfg = (x_cfg *) mconfig;
547 x_cfg *cfg;
554 cfg = (x_cfg *) apr_pcalloc(p, sizeof(x_cfg));
592 x_cfg *merged_config = (x_cfg *) apr_pcalloc(p, sizeof(x_cfg));
593 x_cfg *pconf = (x_cfg *) parent_conf;
594 x_cfg *nconf = (x_cfg *) newloc_conf;
637 x_cfg *cfg;
644 cfg = (x_cfg *) apr_pcalloc(p, sizeof(x_cfg));
674 x_cfg *merged_config = (x_cfg *) apr_pcalloc(p, sizeof(x_cfg));
675 x_cfg *s1conf = (x_cfg *) server1_conf;
676 x_cfg *s2conf = (x_cfg *) server2_conf;
972 x_cfg *dcfg;