Home
last modified time | relevance | path

Searched refs:ngx_cached_http_log_iso8601 (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_times.c34 volatile ngx_str_t ngx_cached_http_log_iso8601; variable
71 ngx_cached_http_log_iso8601.len = sizeof("1970-09-28T12:00:00+06:00") - 1; in ngx_time_init()
188 ngx_cached_http_log_iso8601.data = p3; in ngx_time_update()
H A Dngx_times.h42 extern volatile ngx_str_t ngx_cached_http_log_iso8601;
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.c831 p = ngx_pnalloc(s->connection->pool, ngx_cached_http_log_iso8601.len); in ngx_stream_variable_time_iso8601()
836 ngx_memcpy(p, ngx_cached_http_log_iso8601.data, in ngx_stream_variable_time_iso8601()
837 ngx_cached_http_log_iso8601.len); in ngx_stream_variable_time_iso8601()
839 v->len = ngx_cached_http_log_iso8601.len; in ngx_stream_variable_time_iso8601()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_variables.c2309 p = ngx_pnalloc(r->pool, ngx_cached_http_log_iso8601.len); in ngx_http_variable_time_iso8601()
2314 ngx_memcpy(p, ngx_cached_http_log_iso8601.data, in ngx_http_variable_time_iso8601()
2315 ngx_cached_http_log_iso8601.len); in ngx_http_variable_time_iso8601()
2317 v->len = ngx_cached_http_log_iso8601.len; in ngx_http_variable_time_iso8601()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_log_module.c822 return ngx_cpymem(buf, ngx_cached_http_log_iso8601.data, in ngx_http_log_iso8601()
823 ngx_cached_http_log_iso8601.len); in ngx_http_log_iso8601()