Home
last modified time | relevance | path

Searched refs:FILETIME (Results 1 – 25 of 98) sorted by relevance

1234

/external/lzma/CPP/Windows/
DTimeUtils.h11 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();
DTimeUtils.cpp19 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()
DFileDir.h17 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
DPropVariantConv.h9 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…
DFileIO.h191 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw();
192 bool SetMTime(const FILETIME *mTime) throw();
DFileFind.h29 FILETIME CTime;
30 FILETIME ATime;
31 FILETIME MTime;
DFileIO.cpp386 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()
DPropVariantConv.cpp12 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()
DPropVariant.h71 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; } in CPropVariant()
90 CPropVariant& operator=(const FILETIME &value) throw();
/external/lzma/CPP/7zip/
DIStream.h106 …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/
DFileStreams.h79 …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/
Dwin32.cc320 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(&current_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, &current_ul, sizeof(FILETIME)); in UnixTimeToFileTime()
Dwin32.h79 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/
DDirItem.h17 FILETIME CTime;
18 FILETIME ATime;
19 FILETIME MTime;
113 FILETIME MTime;
DArchiveExtractCallback.h170 FILETIME CTime;
171 FILETIME ATime;
172 FILETIME MTime;
217 HRESULT GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
DIFileExtractCallback.h27 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/
DExtractCallback.h82 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,
DOverwriteDialog.h18 FILETIME Time;
21 void SetTime(const FILETIME *t) in SetTime()
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DExtractCallbackSfx.h43 FILETIME MTime;
52 FILETIME _defaultMTime;
67 const FILETIME &defaultMTime,
/external/webrtc/webrtc/system_wrappers/source/
Dclock.cc101 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/
DMyWindows.h67 } FILETIME; typedef
175 FILETIME filetime;
202 MY_EXTERN_C LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2);
DMyWindows.cpp131 LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2) in CompareFileTime()
/external/google-benchmark/src/
Dsysinfo.cc301 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/
DExtractCallbackConsole.h37 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/
Dclient_info.cc68 FILETIME creation_time, exit_time, kernel_time, user_time; in Initialize()
163 FILETIME now = {0}; in SetProcessUptime()

1234