Searched refs:time_t (Results 1 - 25 of 77) sorted by relevance

1234

/barrelfish-master/include/
H A Dtimeconv.h48 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);
H A Dutime.h40 typedef __time_t time_t; typedef
45 time_t actime; /* Access time */
46 time_t modtime; /* Modification time */
H A Dtime.h65 typedef __time_t time_t; typedef
146 char *ctime(const time_t *);
147 double difftime(time_t, time_t);
149 struct tm *gmtime(const time_t *);
150 struct tm *localtime(const time_t *);
151 time_t mktime(struct tm *);
154 time_t time(time_t *);
182 char *ctime_r(const time_t *, cha
[all...]
H A Dpwd.h50 typedef __time_t time_t; typedef
117 time_t pw_change; /* password change time */
122 time_t pw_expire; /* account expiration */
/barrelfish-master/lib/libc/stdtime/
H A Dtime32.c5 * These routines are for converting time_t to fixed-bit representations
7 * representation of time_t these routines are expected to assume temporal
21 * Convert a 32 bit representation of time_t into time_t. XXX needs to
24 time_t
27 return((time_t)t32);
31 * Convert time_t to a 32 bit representation. If time_t is 64 bits we can
33 * converted back to a temporally local 64 bit time_t using time32_to_time.
36 _time_to_time32(time_t
[all...]
/barrelfish-master/lib/tzcode/stdtime/
H A Ddifftime.c17 #include "private.h" /* for time_t, TYPE_INTEGRAL, and TYPE_SIGNED */
21 difftime(const time_t time1, const time_t time0)
24 ** If (sizeof (double) > sizeof (time_t)) simply convert and subtract
28 if (sizeof (double) > sizeof (time_t))
30 if (!TYPE_INTEGRAL(time_t)) {
32 ** time_t is floating.
36 if (!TYPE_SIGNED(time_t)) {
38 ** time_t is integral and unsigned.
47 ** time_t i
[all...]
H A Dlocaltime.c129 time_t ls_trans; /* transition time */
149 time_t ats[TZ_MAX_TIMES];
174 static time_t detzcode64(const char * codep);
175 static int differ_by_repeat(time_t t1, time_t t0);
185 static struct tm * gmtsub(const time_t * timep, long offset,
187 static struct tm * localsub(const time_t * timep, long offset,
197 static time_t time1(struct tm * tmp,
198 struct tm * (*funcp)(const time_t *,
201 static time_t time
[all...]
/barrelfish-master/include/sys/
H A D_timespec.h40 typedef __time_t time_t; typedef
45 time_t tv_sec; /* seconds */
H A D_timeval.h40 typedef __time_t time_t; typedef
48 time_t tv_sec; /* seconds */
H A Dshm.h71 typedef __time_t time_t; typedef
88 time_t shm_atime; /* time of last shmat() */
89 time_t shm_dtime; /* time of last shmdt() */
90 time_t shm_ctime; /* time of last change by shmctl() */
103 time_t shm_atime; /* time of last shmat() */
104 time_t shm_dtime; /* time of last shmdt() */
105 time_t shm_ctime; /* time of last change by shmctl() */
H A Dsem.h26 typedef __time_t time_t; typedef
36 time_t sem_otime; /* last operation time */
38 time_t sem_ctime; /* last change time */
50 time_t sem_otime; /* last operation time */
51 time_t sem_ctime; /* last change time */
/barrelfish-master/lib/libc/gen/
H A Dtime.c39 time_t
40 time(time_t *t)
43 time_t retval;
/barrelfish-master/lib/libc/include/isc/
H A Dplatform.h30 #include <time.h> /* For time_t */
32 time_t tv_sec; /* seconds */
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Do_time.h64 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
/barrelfish-master/include/openssl/local/
H A Do_time.h64 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
/barrelfish-master/lib/posixcompat/
H A Dtimegm.c104 static time_t tm_to_time(struct tm *tm)
106 time_t year = tm->tm_year + -100;
133 time_t timegm(struct tm *tm)
H A Dtime.c99 time_t
100 time(time_t *timer)
121 time_t val = tod;
/barrelfish-master/lib/libc/resolv/
H A Dres_private.h18 time_t conf_stat; /* time of last stat(resolv.conf) */
/barrelfish-master/lib/tzcode/zic/
H A Dzdump.c22 #include <sys/types.h> /* for time_t */
149 static time_t absolute_min_time;
150 static time_t absolute_max_time;
160 static time_t hunt(char * name, time_t lot, time_t hit);
162 static void show(char * zone, time_t t, int v);
164 static time_t yeartot(long y);
171 time_t * tp;
178 register time_t
[all...]
/barrelfish-master/lib/lua/src/
H A Dloslib.c197 time_t t = luaL_opt(L, (time_t)luaL_checknumber, 2, time(NULL));
242 time_t t;
258 if (t == (time_t)(-1))
267 lua_pushnumber(L, difftime((time_t)(luaL_checknumber(L, 1)),
268 (time_t)(luaL_optnumber(L, 2, 0))));
/barrelfish-master/lib/cxx/cxx/
H A Dchrono.cpp94 time_t
97 return time_t(duration_cast<seconds>(t.time_since_epoch()).count());
101 system_clock::from_time_t(time_t t) _NOEXCEPT
/barrelfish-master/lib/libc/stdio/
H A Dxprintf_time.c63 time_t *tp;
78 tp = *((time_t **)arg[0]);
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Da_time.c101 ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t)
106 ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t,
H A Da_utctm.c187 ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
192 ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
243 int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t)
283 time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s)
315 * Also time_t is inappropriate for general
/barrelfish-master/lib/devif/backends/net/mlx4/include/linux/
H A Dktime.h261 return (struct timespec) { .tv_sec = (time_t) kt.tv.sec,
274 .tv_sec = (time_t) kt.tv.sec,

Completed in 251 milliseconds

1234