Lines Matching refs:tm
155 struct tm *gmtime_r(const time_t *timep, struct tm *r) in gmtime_r()
166 rt_memset(r, RT_NULL, sizeof(struct tm)); in gmtime_r()
207 struct tm* gmtime(const time_t* t) in gmtime()
209 static struct tm tmp; in gmtime()
214 struct tm* localtime_r(const time_t* t, struct tm* r) in localtime_r()
226 struct tm* localtime(const time_t* t) in localtime()
228 static struct tm tmp; in localtime()
233 time_t mktime(struct tm * const t) in mktime()
247 char* asctime_r(const struct tm *t, char *buf) in asctime_r()
301 char *asctime(const struct tm *timeptr) in asctime()
310 struct tm tm; in ctime_r() local
311 return asctime_r(localtime_r(tim_p, &tm), result); in ctime_r()
382 time_t timegm(struct tm * const t) in timegm()