timefmt           351 http/modules/ngx_http_ssi_filter_module.c     ngx_str_set(&ctx->timefmt, "%A, %d-%b-%Y %H:%M:%S %Z");
timefmt          2239 http/modules/ngx_http_ssi_filter_module.c         ctx->timefmt.len = value->len;
timefmt          2240 http/modules/ngx_http_ssi_filter_module.c         ctx->timefmt.data = ngx_pnalloc(r->pool, value->len + 1);
timefmt          2241 http/modules/ngx_http_ssi_filter_module.c         if (ctx->timefmt.data == NULL) {
timefmt          2245 http/modules/ngx_http_ssi_filter_module.c         ngx_cpystrn(ctx->timefmt.data, value->data, value->len + 1);
timefmt          2612 http/modules/ngx_http_ssi_filter_module.c         || (ctx->timefmt.len == sizeof("%s") - 1
timefmt          2613 http/modules/ngx_http_ssi_filter_module.c             && ctx->timefmt.data[0] == '%' && ctx->timefmt.data[1] == 's'))
timefmt          2632 http/modules/ngx_http_ssi_filter_module.c                       (char *) ctx->timefmt.data, &tm);
timefmt            75 http/modules/ngx_http_ssi_filter_module.h     ngx_str_t                 timefmt;