Lines Matching refs:new

1128          * Note: a new response that has an older Date header value than
1293 * new entity and store the response in it.
1295 * entity in the system which needs to be replaced by new
1324 /* no cache handle, create a new entity */
1355 * the new date, last modified, expire and content length and write
1948 cache_dir_conf *new = (cache_dir_conf *) apr_pcalloc(p, sizeof(cache_dir_conf));
1952 new->no_last_mod_ignore = (add->no_last_mod_ignore_set == 0) ? base->no_last_mod_ignore : add->no_last_mod_ignore;
1953 new->no_last_mod_ignore_set = add->no_last_mod_ignore_set || base->no_last_mod_ignore_set;
1955 new->store_expired = (add->store_expired_set == 0) ? base->store_expired : add->store_expired;
1956 new->store_expired_set = add->store_expired_set || base->store_expired_set;
1957 new->store_private = (add->store_private_set == 0) ? base->store_private : add->store_private;
1958 new->store_private_set = add->store_private_set || base->store_private_set;
1959 new->store_nostore = (add->store_nostore_set == 0) ? base->store_nostore : add->store_nostore;
1960 new->store_nostore_set = add->store_nostore_set || base->store_nostore_set;
1963 new->maxex = (add->maxex_set == 0) ? base->maxex : add->maxex;
1964 new->maxex_set = add->maxex_set || base->maxex_set;
1965 new->minex = (add->minex_set == 0) ? base->minex : add->minex;
1966 new->minex_set = add->minex_set || base->minex_set;
1969 new->defex = (add->defex_set == 0) ? base->defex : add->defex;
1970 new->defex_set = add->defex_set || base->defex_set;
1973 new->factor = (add->factor_set == 0) ? base->factor : add->factor;
1974 new->factor_set = add->factor_set || base->factor_set;
1976 new->x_cache = (add->x_cache_set == 0) ? base->x_cache : add->x_cache;
1977 new->x_cache_set = add->x_cache_set || base->x_cache_set;
1978 new->x_cache_detail = (add->x_cache_detail_set == 0) ? base->x_cache_detail
1980 new->x_cache_detail_set = add->x_cache_detail_set
1983 new->stale_on_error = (add->stale_on_error_set == 0) ? base->stale_on_error
1985 new->stale_on_error_set = add->stale_on_error_set
1988 new->cacheenable = add->enable_set ? apr_array_append(p, base->cacheenable,
1990 new->enable_set = add->enable_set || base->enable_set;
1991 new->disable = (add->disable_set == 0) ? base->disable : add->disable;
1992 new->disable_set = add->disable_set || base->disable_set;
1994 return new;
2162 char **new;
2178 new = (char **)apr_array_push(conf->ignore_headers);
2179 (*new) = (char *)header;
2190 char **new;
2206 new = (char **)apr_array_push(conf->ignore_session_id);
2207 (*new) = (char *)identifier;
2220 struct cache_enable *new;
2251 new = apr_array_push(dconf->cacheenable);
2255 new = apr_array_push(conf->cacheenable);
2258 new->type = type;
2259 if (apr_uri_parse(parms->pool, url, &(new->url))) {
2262 if (new->url.path) {
2263 new->pathlen = strlen(new->url.path);
2265 new->pathlen = 1;
2266 new->url.path = "/";
2276 struct cache_disable *new;
2303 new = apr_array_push(conf->cachedisable);
2304 if (apr_uri_parse(parms->pool, url, &(new->url))) {
2307 if (new->url.path) {
2308 new->pathlen = strlen(new->url.path);
2310 new->pathlen = 1;
2311 new->url.path = "/";
2517 * Consider a new config directive that enables loading specific cache