Lines Matching defs:new
145 dir_config_rec *new = apr_pcalloc(p, sizeof(dir_config_rec));
147 new->index_names = NULL;
148 new->do_slash = MODDIR_UNSET;
149 new->checkhandler = MODDIR_UNSET;
150 new->redirect_index = REDIRECT_UNSET;
151 return (void *) new;
156 dir_config_rec *new = apr_pcalloc(p, sizeof(dir_config_rec));
160 new->index_names = add->index_names ? add->index_names : base->index_names;
161 new->do_slash =
163 new->checkhandler =
165 new->redirect_index=
167 new->dflt = add->dflt ? add->dflt : base->dflt;
168 return new;