/external/lzma/CPP/Windows/ |
D | TimeUtils.h | 11 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime) throw(); 12 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime) throw(); 13 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime) throw(); 14 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &fileTime) throw(); 15 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime) throw(); 16 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw(); 19 void GetCurUtcFileTime(FILETIME &ft) throw();
|
D | TimeUtils.cpp | 19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw() in DosTimeToFileTime() 44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw() in FileTimeToDosTime() 118 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft) throw() in UnixTimeToFileTime() 125 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw() in UnixTime64ToFileTime() 144 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw() in FileTimeToUnixTime64() 150 bool FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime) throw() in FileTimeToUnixTime() 189 void GetCurUtcFileTime(FILETIME &ft) throw() in GetCurUtcFileTime()
|
D | FileDir.h | 17 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
|
D | PropVariantConv.h | 9 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeco… 10 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *s, bool includeTime = true, bool includeS…
|
D | FileIO.h | 191 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw(); 192 bool SetMTime(const FILETIME *mTime) throw();
|
D | FileFind.h | 29 FILETIME CTime; 30 FILETIME ATime; 31 FILETIME MTime;
|
D | FileIO.cpp | 386 bool COutFile::SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw() in SetTime() 389 bool COutFile::SetMTime(const FILETIME *mTime) throw() { return SetTime(NULL, NULL, mTime); } in SetMTime()
|
D | PropVariantConv.cpp | 12 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime, bool includeSeconds) th… in ConvertFileTimeToString() 46 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *dest, bool includeTime, bool includeSecon… in ConvertFileTimeToString()
|
D | PropVariant.h | 71 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; } in CPropVariant() 90 CPropVariant& operator=(const FILETIME &value) throw();
|
/external/lzma/CPP/7zip/ |
D | IStream.h | 106 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri… 117 FILETIME CTime; 118 FILETIME ATime; 119 FILETIME MTime;
|
/external/lzma/CPP/7zip/Common/ |
D | FileStreams.h | 79 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri… 122 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetTime() 126 bool SetMTime(const FILETIME *mTime) { return File.SetMTime(mTime); } in SetMTime()
|
/external/webrtc/webrtc/base/ |
D | win32.cc | 320 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { in FileTimeToUnixTime() 331 FILETIME base_ft; in FileTimeToUnixTime() 335 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); in FileTimeToUnixTime() 336 memcpy(¤t_ul, &ft, sizeof(FILETIME)); in FileTimeToUnixTime() 344 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) { in UnixTimeToFileTime() 355 FILETIME base_ft; in UnixTimeToFileTime() 359 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); in UnixTimeToFileTime() 366 memcpy(ft, ¤t_ul, sizeof(FILETIME)); in UnixTimeToFileTime()
|
D | win32.h | 79 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut); 82 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft); 88 inline uint64_t ToUInt64(const FILETIME& ft) { in ToUInt64()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | DirItem.h | 17 FILETIME CTime; 18 FILETIME ATime; 19 FILETIME MTime; 113 FILETIME MTime;
|
D | ArchiveExtractCallback.h | 170 FILETIME CTime; 171 FILETIME ATime; 172 FILETIME MTime; 217 HRESULT GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
|
D | IFileExtractCallback.h | 27 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize, 28 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | ExtractCallback.h | 82 FILETIME CTime; 83 FILETIME ATime; 84 FILETIME MTime; 199 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize, 200 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize, 227 const FILETIME *srcTime,
|
D | OverwriteDialog.h | 18 FILETIME Time; 21 void SetTime(const FILETIME *t) in SetTime()
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
D | ExtractCallbackSfx.h | 43 FILETIME MTime; 52 FILETIME _defaultMTime; 67 const FILETIME &defaultMTime,
|
/external/webrtc/webrtc/system_wrappers/source/ |
D | clock.cc | 101 FILETIME file_time; 108 FILETIME StartTime; in CurrentTimeVal() 127 void GetTime(FILETIME* current_time) const { in GetTime() 159 FILETIME ft0 = {}; in GetSystemReferencePoint() 160 FILETIME ft1 = {}; in GetSystemReferencePoint()
|
/external/lzma/CPP/Common/ |
D | MyWindows.h | 67 } FILETIME; typedef 175 FILETIME filetime; 202 MY_EXTERN_C LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2);
|
D | MyWindows.cpp | 131 LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2) in CompareFileTime()
|
/external/google-benchmark/src/ |
D | sysinfo.cc | 301 FILETIME creation_time; in MyCPUUsageRUsage() 302 FILETIME exit_time; in MyCPUUsageRUsage() 303 FILETIME kernel_time; in MyCPUUsageRUsage() 304 FILETIME user_time; in MyCPUUsageRUsage()
|
/external/lzma/CPP/7zip/UI/Console/ |
D | ExtractCallbackConsole.h | 37 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize, 38 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | client_info.cc | 68 FILETIME creation_time, exit_time, kernel_time, user_time; in Initialize() 163 FILETIME now = {0}; in SetProcessUptime()
|