Lines Matching defs:new
77 * unless explicitly overridden by new directives in the subdirectory
187 expires_dir_config *new =
189 new->active = ACTIVE_DONTCARE;
190 new->wildcards = 0;
191 new->expiresdefault = NULL;
192 new->expiresbytype = apr_table_make(p, 4);
193 return (void *) new;
362 expires_dir_config *new = (expires_dir_config *) apr_pcalloc(p, sizeof(expires_dir_config));
367 new->active = base->active;
370 new->active = add->active;
374 new->expiresdefault = add->expiresdefault;
377 new->expiresdefault = base->expiresdefault;
379 new->wildcards = add->wildcards;
380 new->expiresbytype = apr_table_overlay(p, add->expiresbytype,
382 return new;