| /f-stack/tools/compat/ |
| H A D | time32.c | 26 time_t 29 return((time_t)t32); in _time32_to_time() 38 _time_to_time32(time_t t) in _time_to_time32() 48 time_t 51 return((time_t)t64); in _time64_to_time() 59 _time_to_time64(time_t t) in _time_to_time64() 69 _time_to_long(time_t t) in _time_to_long() 76 time_t 89 _time_to_int(time_t t) in _time_to_int() 96 time_t [all …]
|
| /f-stack/tools/compat/include/ |
| H A D | timeconv.h | 48 typedef __time_t time_t; typedef 52 time_t _time32_to_time(__int32_t t32); 53 __int32_t _time_to_time32(time_t t); 54 time_t _time64_to_time(__int64_t t64); 55 __int64_t _time_to_time64(time_t t); 56 long _time_to_long(time_t t); 57 time_t _long_to_time(long tlong); 58 int _time_to_int(time_t t); 59 time_t _int_to_time(int tint);
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_cache.h | 35 time_t valid; 57 time_t expire; 58 time_t valid_sec; 73 time_t valid_sec; 75 time_t error_sec; 77 time_t date; 128 time_t valid_sec; 130 time_t error_sec; 132 time_t date; 166 time_t inactive; [all …]
|
| H A D | ngx_http_upstream_round_robin.h | 33 time_t accessed; 34 time_t checked; 37 time_t fail_timeout;
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | localtime.c | 52 static int is_leap_year(time_t year) { in is_leap_year() 59 void nolocks_localtime(struct tm *tmp, time_t t, time_t tz, int dst) { in nolocks_localtime() 60 const time_t secs_min = 60; in nolocks_localtime() 61 const time_t secs_hour = 3600; in nolocks_localtime() 62 const time_t secs_day = 3600*24; in nolocks_localtime() 66 time_t days = t / secs_day; /* Days passed since epoch. */ in nolocks_localtime() 67 time_t seconds = t % secs_day; /* Remaining seconds. */ in nolocks_localtime() 83 time_t days_this_year = 365 + is_leap_year(tmp->tm_year); in nolocks_localtime() 112 time_t t = time(NULL); in main()
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_times.h | 17 time_t sec; 26 u_char *ngx_http_time(u_char *buf, time_t t); 27 u_char *ngx_http_cookie_time(u_char *buf, time_t t); 28 void ngx_gmtime(time_t t, ngx_tm_t *tp); 30 time_t ngx_next_time(time_t when);
|
| H A D | ngx_open_file_cache.h | 22 time_t mtime; 31 time_t valid; 61 time_t created; 62 time_t accessed; 66 time_t mtime; 98 time_t inactive; 124 ngx_uint_t max, time_t inactive);
|
| H A D | ngx_resolver.h | 133 time_t expire; 134 time_t valid; 186 time_t resend_timeout; 187 time_t tcp_timeout; 188 time_t expire; 189 time_t valid; 207 time_t valid;
|
| H A D | ngx_times.c | 12 static ngx_msec_t ngx_monotonic_time(time_t sec, ngx_uint_t msec); 85 time_t sec; in ngx_time_update() 196 ngx_monotonic_time(time_t sec, ngx_uint_t msec) in ngx_monotonic_time() 227 time_t sec; in ngx_time_sigsafe_update() 283 ngx_http_time(u_char *buf, time_t t) in ngx_http_time() 301 ngx_http_cookie_time(u_char *buf, time_t t) in ngx_http_cookie_time() 328 ngx_gmtime(time_t t, ngx_tm_t *tp) in ngx_gmtime() 432 time_t 433 ngx_next_time(time_t when) in ngx_next_time() 435 time_t now, next; in ngx_next_time()
|
| /f-stack/freebsd/sys/ |
| H A D | msg.h | 59 typedef __time_t time_t; typedef 74 time_t msg_stime; /* time of last msgsnd() */ 76 time_t msg_rtime; /* time of last msgrcv() */ 78 time_t msg_ctime; /* time of last msgctl() */ 99 time_t msg_stime; /* time of last msgsnd() */ 100 time_t msg_rtime; /* time of last msgrcv() */ 101 time_t msg_ctime; /* time of last msgctl() */
|
| H A D | shm.h | 77 typedef __time_t time_t; typedef 94 time_t shm_atime; /* time of last shmat() */ 95 time_t shm_dtime; /* time of last shmdt() */ 96 time_t shm_ctime; /* time of last change by shmctl() */ 109 time_t shm_atime; /* time of last shmat() */ 110 time_t shm_dtime; /* time of last shmdt() */ 111 time_t shm_ctime; /* time of last change by shmctl() */
|
| H A D | sem.h | 29 typedef __time_t time_t; typedef 39 time_t sem_otime; /* last operation time */ 41 time_t sem_ctime; /* last change time */ 53 time_t sem_otime; /* last operation time */ 54 time_t sem_ctime; /* last change time */
|
| H A D | acct.h | 64 time_t ac_btime; /* starting time */ 98 time_t ac_btime; /* starting time */ 127 time_t ac_btime; /* starting time */
|
| H A D | _timespec.h | 42 typedef __time_t time_t; typedef 47 time_t tv_sec; /* seconds */
|
| H A D | _timeval.h | 42 typedef __time_t time_t; typedef 50 time_t tv_sec; /* seconds */
|
| H A D | timeb.h | 50 typedef __time_t time_t; typedef 56 time_t time; /* seconds since the Epoch */
|
| /f-stack/app/nginx-1.16.1/src/os/unix/ |
| H A D | ngx_time.c | 42 time_t s; in ngx_timezone_update() 57 ngx_localtime(time_t s, ngx_tm_t *tm) in ngx_localtime() 76 ngx_libc_localtime(time_t s, struct tm *tm) in ngx_libc_localtime() 92 ngx_libc_gmtime(time_t s, struct tm *tm) in ngx_libc_gmtime()
|
| H A D | ngx_time.h | 57 void ngx_localtime(time_t s, ngx_tm_t *tm); 58 void ngx_libc_localtime(time_t s, struct tm *tm); 59 void ngx_libc_gmtime(time_t s, struct tm *tm);
|
| /f-stack/app/redis-5.0.5/utils/lru/ |
| H A D | lfu-simulation.c | 8 time_t switch_after = 30; /* Switch access pattern after N seconds. */ 18 time_t ctime; /* Key creation time. */ 84 time_t start = time(NULL); in main() 85 time_t new_entry_time = start; in main() 86 time_t display_time = start; in main() 99 time_t now = time(NULL); in main()
|
| /f-stack/tools/libutil/ |
| H A D | login_cap.h | 145 int auth_timeok(login_cap_t *, time_t); 150 int in_lt(const login_time_t *, time_t *); 151 int in_ltm(const login_time_t *, struct tm *, time_t *); 152 int in_ltms(const login_time_t *, struct tm *, time_t *); 153 int in_lts(const login_time_t *, time_t *);
|
| H A D | login_times.c | 110 in_ltm(const login_time_t *ltm, struct tm *tt, time_t *ends) in in_ltm() 138 in_lt(const login_time_t *ltm, time_t *t) in in_lt() 145 in_ltms(const login_time_t *ltm, struct tm *tm, time_t *t) in in_ltms() 158 in_lts(const login_time_t *ltm, time_t *t) in in_lts()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | loslib.c | 126 time_t t = luaL_opt(L, (time_t)luaL_checknumber, 2, time(NULL)); in os_date() 171 time_t t; in os_time() 187 if (t == (time_t)(-1)) in os_time() 196 lua_pushnumber(L, difftime((time_t)(luaL_checknumber(L, 1)), in os_difftime() 197 (time_t)(luaL_optnumber(L, 2, 0)))); in os_difftime()
|
| /f-stack/freebsd/net/route/ |
| H A D | route_temporal.c | 58 time_t *next_callout; in expire_route() 66 next_callout = (time_t *)arg; in expire_route() 87 time_t next_expire; in expire_callout()
|
| /f-stack/freebsd/amd64/vmm/io/ |
| H A D | vrtc.c | 83 time_t base_rtctime; 149 static time_t 153 time_t t, secs; in vrtc_curtime() 282 static time_t 405 time_t oldtime; in vrtc_time_update() 547 time_t rtctime; in vrtc_callout_handler() 773 time_t 778 time_t t; in vrtc_get_time() 820 time_t curtime; in vrtc_nvram_read() 877 time_t curtime; in vrtc_data_handler() [all …]
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_upstream_round_robin.h | 33 time_t accessed; 34 time_t checked; 37 time_t fail_timeout;
|