Searched refs:time_t (Results 1 – 22 of 22) sorted by relevance
/bionic/libc/tzcode/ |
D | difftime.c | 18 const time_t time1; in difftime() 19 const time_t time0; 26 if (sizeof (double) > sizeof (time_t)) 28 if (!TYPE_INTEGRAL(time_t)) { 34 if (!TYPE_SIGNED(time_t)) { 55 if (sizeof (unsigned long) < sizeof (time_t))
|
D | localtime.c | 83 static const time_t TIME_T_MAX = 84 TYPE_INTEGRAL(time_t) ? 85 ( TYPE_SIGNED(time_t) ? 86 ~((time_t)1 << (TYPE_BIT(time_t)-1)) 88 ~(time_t)0 91 ( sizeof(time_t) > sizeof(float) ? (time_t)DBL_MAX : (time_t)FLT_MAX ); 93 static const time_t TIME_T_MIN = 94 TYPE_INTEGRAL(time_t) ? 95 ( TYPE_SIGNED(time_t) ? 96 ((time_t)1 << (TYPE_BIT(time_t)-1)) [all …]
|
D | private.h | 337 char *ctime_r P((time_t const *, char *));
|
/bionic/libc/include/ |
D | time.h | 40 extern time_t time(time_t *); 70 extern double difftime (time_t __time1, time_t __time0); 71 extern time_t mktime (struct tm *a); 73 extern struct tm* localtime(const time_t *t); 74 extern struct tm* localtime_r(const time_t *timep, struct tm *result); 76 extern struct tm* gmtime(const time_t *timep); 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result); 100 extern char *ctime(const time_t *timep); 101 extern char *ctime_r(const time_t *timep, char *buf);
|
D | utmp.h | 47 time_t ll_time;
|
/bionic/libc/kernel/common/linux/ |
D | utime.h | 16 time_t actime; 17 time_t modtime;
|
D | time.h | 20 time_t tv_sec; 26 time_t tv_sec;
|
D | ppp_defs.h | 117 time_t xmit_idle; 118 time_t recv_idle;
|
D | coda.h | 62 time_t tv_sec;
|
/bionic/libc/unistd/ |
D | time.c | 33 time_t 34 time(time_t *t) in time() 41 *t = (time_t)tt.tv_sec; in time()
|
D | syslog.c | 110 time_t now; in vsyslog_r()
|
/bionic/libc/include/sys/ |
D | timeb.h | 36 time_t time;
|
D | types.h | 100 typedef __kernel_time_t time_t; typedef
|
/bionic/libc/private/ |
D | arpa_nameser.h | 541 const u_char *, int, u_char *, int *, time_t); 543 const u_char *, int, u_char *, int *, time_t, 555 time_t *, int);
|
/bionic/libc/bionic/ |
D | time64.c | 432 struct tm * fake_localtime_r(const time_t *clock, struct tm *result) { in fake_localtime_r() 450 struct tm * fake_gmtime_r(const time_t *clock, struct tm *result) { in fake_gmtime_r() 535 time_t safe_time = *in_time; in gmtime64_r() 650 time_t safe_time; in localtime64_r()
|
/bionic/libstdc++/include/ |
D | ctime | 46 using ::time_t;
|
/bionic/libc/kernel/common/linux/raid/ |
D | md_k.h | 88 time_t ctime, utime;
|
/bionic/libc/netbsd/resolv/ |
D | res_cache.c | 337 static time_t 990 time_t when; /* time_t when entry was added to table */ 1124 time_t now = _time_now(); in _cache_flush_locked() 1296 time_t now; in _resolv_cache_lookup()
|
D | res_debug.c | 1113 time_t myclock = secs; in p_secstodate()
|
/bionic/libc/netbsd/isc/ |
D | ev_timers.c | 70 evConsTime(time_t sec, long nsec) { in evConsTime() 208 if (due.tv_sec == (time_t)0 && due.tv_nsec == 0L) in evSetTimer()
|
/bionic/libc/private/isc/ |
D | eventlib.h | 166 struct timespec evConsTime __P((time_t sec, long nsec));
|
/bionic/libc/docs/ |
D | OVERVIEW.TXT | 57 time_t: 59 time_t is 32-bit as defined by the kernel on 32-bit CPUs. A 64-bit version
|