Home | History | Annotate | Download | only in sys

Lines Matching full:_filename

86   _CRTIMP int __cdecl _utime32(const char *_Filename,struct __utimbuf32 *_Time);
88 _CRTIMP int __cdecl _wutime32(const wchar_t *_Filename,struct __utimbuf32 *_Time);
89 _CRTIMP int __cdecl _utime64(const char *_Filename,struct __utimbuf64 *_Time);
91 _CRTIMP int __cdecl _wutime64(const wchar_t *_Filename,struct __utimbuf64 *_Time);
99 __CRT_INLINE int __cdecl _utime(const char *_Filename,struct _utimbuf *_Utimbuf) {
100 return _utime64(_Filename,(struct __utimbuf64 *)_Utimbuf);
105 __CRT_INLINE int __cdecl _wutime(const wchar_t *_Filename,struct _utimbuf *_Utimbuf) {
106 return _wutime64(_Filename,(struct __utimbuf64 *)_Utimbuf);
115 __CRT_INLINE int __cdecl utime(const char *_Filename,struct utimbuf *_Utimbuf) {
116 return _utime64(_Filename,(struct __utimbuf64 *)_Utimbuf);