Home | History | Annotate | Download | only in include

Lines Matching defs:time_t

43   typedef __time32_t time_t;
45 typedef __time64_t time_t;
153 wchar_t *__cdecl _wctime(const time_t *) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
156 __CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime64(_Time); }
158 __CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime32(_Time); }
167 double __cdecl difftime(time_t _Time1,time_t _Time2);
168 char *__cdecl ctime(const time_t *_Time) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
169 struct tm *__cdecl gmtime(const time_t *_Time) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
170 struct tm *__cdecl localtime(const time_t *_Time) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
220 time_t __cdecl mktime(struct tm *_Tm);
221 time_t __cdecl _mkgmtime(struct tm *_Tm);
222 time_t __cdecl time(time_t *_Time);
226 __CRT_INLINE double __cdecl difftime(time_t _Time1,time_t _Time2)
228 __CRT_INLINE char *__cdecl ctime(const time_t *_Time) { return _ctime64(_Time); }
229 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime64(_Time); }
230 __CRT_INLINE struct tm *__cdecl localtime(const time_t *_Time) { return _localtime64(_Time); }
231 __CRT_INLINE time_t __cdecl mktime(struct tm *_Tm) { return _mktime64(_Tm); }
232 __CRT_INLINE time_t __cdecl _mkgmtime(struct tm *_Tm) { return _mkgmtime64(_Tm); }
233 __CRT_INLINE time_t __cdecl time(time_t *_Time) { return _time64(_Time); }
235 __CRT_INLINE double __cdecl difftime(time_t _Time1,time_t _Time2)
237 __CRT_INLINE char *__cdecl ctime(const time_t *_Time) { return _ctime32(_Time); }
238 __CRT_INLINE struct tm *__cdecl localtime(const time_t *_Time) { return _localtime32(_Time); }
239 __CRT_INLINE time_t __cdecl mktime(struct tm *_Tm) { return _mktime32(_Tm); }
240 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime32(_Time); }
241 __CRT_INLINE time_t __cdecl _mkgmtime(struct tm *_Tm) { return _mkgmtime32(_Tm); }
242 __CRT_INLINE time_t __cdecl time(time_t *_Time) { return _time32(_Time); }