tm                 76 core/ngx_times.c     ngx_tm_t         tm, gmt;
tm                125 core/ngx_times.c     ngx_gmtime(sec + tp->gmtoff * 60, &tm);
tm                129 core/ngx_times.c     ngx_localtime(sec, &tm);
tm                130 core/ngx_times.c     cached_gmtoff = (ngx_int_t) (tm.ngx_tm_gmtoff / 60);
tm                135 core/ngx_times.c     ngx_localtime(sec, &tm);
tm                136 core/ngx_times.c     cached_gmtoff = ngx_timezone(tm.ngx_tm_isdst);
tm                145 core/ngx_times.c                        tm.ngx_tm_year, tm.ngx_tm_mon,
tm                146 core/ngx_times.c                        tm.ngx_tm_mday, tm.ngx_tm_hour,
tm                147 core/ngx_times.c                        tm.ngx_tm_min, tm.ngx_tm_sec);
tm                153 core/ngx_times.c                        tm.ngx_tm_mday, months[tm.ngx_tm_mon - 1],
tm                154 core/ngx_times.c                        tm.ngx_tm_year, tm.ngx_tm_hour,
tm                155 core/ngx_times.c                        tm.ngx_tm_min, tm.ngx_tm_sec,
tm                162 core/ngx_times.c                        tm.ngx_tm_year, tm.ngx_tm_mon,
tm                163 core/ngx_times.c                        tm.ngx_tm_mday, tm.ngx_tm_hour,
tm                164 core/ngx_times.c                        tm.ngx_tm_min, tm.ngx_tm_sec,
tm                187 core/ngx_times.c     ngx_tm_t         tm;
tm                213 core/ngx_times.c     ngx_gmtime(sec + cached_gmtoff * 60, &tm);
tm                218 core/ngx_times.c                        tm.ngx_tm_year, tm.ngx_tm_mon,
tm                219 core/ngx_times.c                        tm.ngx_tm_mday, tm.ngx_tm_hour,
tm                220 core/ngx_times.c                        tm.ngx_tm_min, tm.ngx_tm_sec);
tm                235 core/ngx_times.c     ngx_tm_t  tm;
tm                237 core/ngx_times.c     ngx_gmtime(t, &tm);
tm                240 core/ngx_times.c                        week[tm.ngx_tm_wday],
tm                241 core/ngx_times.c                        tm.ngx_tm_mday,
tm                242 core/ngx_times.c                        months[tm.ngx_tm_mon - 1],
tm                243 core/ngx_times.c                        tm.ngx_tm_year,
tm                244 core/ngx_times.c                        tm.ngx_tm_hour,
tm                245 core/ngx_times.c                        tm.ngx_tm_min,
tm                246 core/ngx_times.c                        tm.ngx_tm_sec);
tm                253 core/ngx_times.c     ngx_tm_t  tm;
tm                255 core/ngx_times.c     ngx_gmtime(t, &tm);
tm                263 core/ngx_times.c                        (tm.ngx_tm_year > 2037) ?
tm                266 core/ngx_times.c                        week[tm.ngx_tm_wday],
tm                267 core/ngx_times.c                        tm.ngx_tm_mday,
tm                268 core/ngx_times.c                        months[tm.ngx_tm_mon - 1],
tm                269 core/ngx_times.c                        (tm.ngx_tm_year > 2037) ? tm.ngx_tm_year:
tm                270 core/ngx_times.c                                                  tm.ngx_tm_year % 100,
tm                271 core/ngx_times.c                        tm.ngx_tm_hour,
tm                272 core/ngx_times.c                        tm.ngx_tm_min,
tm                273 core/ngx_times.c                        tm.ngx_tm_sec);
tm                374 core/ngx_times.c     struct tm  tm;
tm                378 core/ngx_times.c     ngx_libc_localtime(now, &tm);
tm                380 core/ngx_times.c     tm.tm_hour = (int) (when / 3600);
tm                382 core/ngx_times.c     tm.tm_min = (int) (when / 60);
tm                383 core/ngx_times.c     tm.tm_sec = (int) (when % 60);
tm                385 core/ngx_times.c     next = mktime(&tm);
tm                395 core/ngx_times.c     tm.tm_mday++;
tm                399 core/ngx_times.c     next = mktime(&tm);
tm                142 http/modules/ngx_http_autoindex_module.c     ngx_tm_t                        tm;
tm                468 http/modules/ngx_http_autoindex_module.c         ngx_gmtime(entry[i].mtime + tp->gmtoff * 60 * alcf->localtime, &tm);
tm                471 http/modules/ngx_http_autoindex_module.c                               tm.ngx_tm_mday,
tm                472 http/modules/ngx_http_autoindex_module.c                               months[tm.ngx_tm_mon - 1],
tm                473 http/modules/ngx_http_autoindex_module.c                               tm.ngx_tm_year,
tm                474 http/modules/ngx_http_autoindex_module.c                               tm.ngx_tm_hour,
tm                475 http/modules/ngx_http_autoindex_module.c                               tm.ngx_tm_min);
tm               2600 http/modules/ngx_http_ssi_filter_module.c     struct tm            tm;
tm               2626 http/modules/ngx_http_ssi_filter_module.c         ngx_libc_gmtime(tp->sec, &tm);
tm               2628 http/modules/ngx_http_ssi_filter_module.c         ngx_libc_localtime(tp->sec, &tm);
tm               2632 http/modules/ngx_http_ssi_filter_module.c                       (char *) ctx->timefmt.data, &tm);
tm                 42 os/unix/ngx_time.c     struct tm  *t;
tm                 56 os/unix/ngx_time.c ngx_localtime(time_t s, ngx_tm_t *tm)
tm                 59 os/unix/ngx_time.c     (void) localtime_r(&s, tm);
tm                 65 os/unix/ngx_time.c     *tm = *t;
tm                 69 os/unix/ngx_time.c     tm->ngx_tm_mon++;
tm                 70 os/unix/ngx_time.c     tm->ngx_tm_year += 1900;
tm                 75 os/unix/ngx_time.c ngx_libc_localtime(time_t s, struct tm *tm)
tm                 78 os/unix/ngx_time.c     (void) localtime_r(&s, tm);
tm                 81 os/unix/ngx_time.c     struct tm  *t;
tm                 84 os/unix/ngx_time.c     *tm = *t;
tm                 91 os/unix/ngx_time.c ngx_libc_gmtime(time_t s, struct tm *tm)
tm                 94 os/unix/ngx_time.c     (void) gmtime_r(&s, tm);
tm                 97 os/unix/ngx_time.c     struct tm  *t;
tm                100 os/unix/ngx_time.c     *tm = *t;
tm                 18 os/unix/ngx_time.h typedef struct tm             ngx_tm_t;
tm                 56 os/unix/ngx_time.h void ngx_localtime(time_t s, ngx_tm_t *tm);
tm                 57 os/unix/ngx_time.h void ngx_libc_localtime(time_t s, struct tm *tm);
tm                 58 os/unix/ngx_time.h void ngx_libc_gmtime(time_t s, struct tm *tm);