Home
last modified time | relevance | path

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

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_times.c33 volatile ngx_str_t ngx_cached_http_log_time; variable
70 ngx_cached_http_log_time.len = sizeof("28/Sep/1970:12:00:00 +0600") - 1; in ngx_time_init()
187 ngx_cached_http_log_time.data = p2; in ngx_time_update()
H A Dngx_times.h41 extern volatile ngx_str_t ngx_cached_http_log_time;
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.c855 p = ngx_pnalloc(s->connection->pool, ngx_cached_http_log_time.len); in ngx_stream_variable_time_local()
860 ngx_memcpy(p, ngx_cached_http_log_time.data, ngx_cached_http_log_time.len); in ngx_stream_variable_time_local()
862 v->len = ngx_cached_http_log_time.len; in ngx_stream_variable_time_local()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_variables.c2333 p = ngx_pnalloc(r->pool, ngx_cached_http_log_time.len); in ngx_http_variable_time_local()
2338 ngx_memcpy(p, ngx_cached_http_log_time.data, ngx_cached_http_log_time.len); in ngx_http_variable_time_local()
2340 v->len = ngx_cached_http_log_time.len; in ngx_http_variable_time_local()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_log_module.c815 return ngx_cpymem(buf, ngx_cached_http_log_time.data, in ngx_http_log_time()
816 ngx_cached_http_log_time.len); in ngx_http_log_time()