Lines Matching refs:ptr
54 static void dumpit(ap_filter_t *f, apr_bucket *b, dumpio_conf_t *ptr)
133 dumpio_conf_t *ptr = f->ctx;
146 dumpit(f, b, ptr);
162 dumpio_conf_t *ptr = f->ctx;
174 dumpit(f, b, ptr);
182 dumpio_conf_t *ptr;
184 ptr = (dumpio_conf_t *) ap_get_module_config(c->base_server->module_config,
187 if (ptr->enable_input)
188 ap_add_input_filter("DUMPIO_IN", ptr, NULL, c);
189 if (ptr->enable_output)
190 ap_add_output_filter("DUMPIO_OUT", ptr, NULL, c);
210 dumpio_conf_t *ptr = apr_pcalloc(p, sizeof *ptr);
211 ptr->enable_input = 0;
212 ptr->enable_output = 0;
213 return ptr;
218 dumpio_conf_t *ptr = ap_get_module_config(cmd->server->module_config,
221 ptr->enable_input = arg;
227 dumpio_conf_t *ptr = ap_get_module_config(cmd->server->module_config,
230 ptr->enable_output = arg;