Searched refs:FILETIME (Results 1 - 25 of 120) sorted by relevance

12345

/external/lzma/CPP/Windows/
H A DTime.h11 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime);
12 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime);
13 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime);
14 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime);
17 void GetCurUtcFileTime(FILETIME &ft);
H A DPropVariantConversions.h9 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true);
10 UString ConvertFileTimeToString(const FILETIME &ft, bool includeTime = true, bool includeSeconds = true);
H A DFileIO.h17 FILETIME CTime;
18 FILETIME ATime;
19 FILETIME MTime;
126 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
127 bool SetMTime(const FILETIME *mTime);
H A DTime.cpp19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft)
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime)
118 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft)
125 bool FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime)
163 void GetCurUtcFileTime(FILETIME &ft)
H A DPropVariant.h27 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; }
41 CPropVariant& operator=(const FILETIME &value);
/external/chromium_org/base/process/
H A Dprocess_info_win.cc16 FILETIME creation_time = {};
17 FILETIME ignore = {};
H A Dprocess_metrics_win.cc190 static uint64 FileTimeToUTC(const FILETIME& ftime) {
198 FILETIME creation_time;
199 FILETIME exit_time;
200 FILETIME kernel_time;
201 FILETIME user_time;
222 // FILETIME is in 100-nanosecond units, so this needs microseconds times 10.
/external/chromium_org/third_party/skia/tools/timer/
H A DSysTimer_windows.cpp12 FILETIME createTime;
13 FILETIME exitTime;
14 FILETIME usrTime;
15 FILETIME sysTime;
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_timespec.c51 ptw32_timespec_to_filetime (const struct timespec *ts, FILETIME * ft)
56 * into FILETIME (as set by GetSystemTimeAsFileTime), where the time is
66 ptw32_filetime_to_timespec (const FILETIME * ft, struct timespec *ts)
69 * converts FILETIME (as set by GetSystemTimeAsFileTime), where the time is
/external/srec/portable/src/
H A Dpcputimer.c75 FILETIME CreationTime;
76 FILETIME ExitTime;
77 FILETIME KernelTime;
78 FILETIME UserTime;
101 FILETIME CreationTime;
102 FILETIME ExitTime;
103 FILETIME KernelTime;
104 FILETIME UserTime;
129 FILETIME CreationTime;
130 FILETIME ExitTim
[all...]
/external/llvm/lib/Support/Windows/
H A DTimeValue.inc29 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
/external/lzma/CPP/7zip/UI/Common/
H A DDirItem.h13 FILETIME CTime;
14 FILETIME ATime;
15 FILETIME MTime;
57 FILETIME MTime;
H A DArchiveExtractCallback.h53 FILETIME CTime;
54 FILETIME ATime;
55 FILETIME MTime;
87 HRESULT GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
H A DIFileExtractCallback.h26 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
27 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
H A DOpenArchive.h25 FILETIME MTime;
32 HRESULT GetItemMTime(UInt32 index, FILETIME &ft, bool &defined) const;
/external/skia/tools/timer/
H A DSysTimer_windows.cpp10 FILETIME createTime;
11 FILETIME exitTime;
12 FILETIME usrTime;
13 FILETIME sysTime;
/external/chromium_org/base/time/
H A Dtime_win.cc52 // From MSDN, FILETIME "Contains a 64-bit value representing the number of
54 int64 FileTimeToMicroseconds(const FILETIME& ft) {
58 return bit_cast<int64, FILETIME>(ft) / 10;
61 void MicrosecondsToFileTime(int64 us, FILETIME* ft) {
63 "representable in FILETIME";
67 *ft = bit_cast<FILETIME, int64>(us * 10);
71 FILETIME ft;
104 // The internal representation of Time uses FILETIME, whose epoch is 1601-01-01
150 Time Time::FromFileTime(FILETIME ft) {
151 if (bit_cast<int64, FILETIME>(f
[all...]
/external/lzma/CPP/7zip/Common/
H A DFileStreams.h118 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime)
122 bool SetMTime(const FILETIME *mTime) { return File.SetMTime(mTime); }
/external/lzma/CPP/7zip/UI/Console/
H A DExtractCallbackConsole.h33 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
34 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
/external/chromium_org/third_party/webrtc/base/
H A Dwin32.h80 // Convert FILETIME to time_t
81 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut);
83 // Convert time_t to FILETIME
84 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
89 // Convert a FILETIME to a UInt64
90 inline uint64 ToUInt64(const FILETIME& ft) {
H A Dwin32_unittest.cc31 FILETIME ft;
H A Dwin32.cc311 // FILETIME of that time/date, then we add/subtract in appropriate units to
313 // The units of FILETIME are 100ns intervals, so by multiplying by or dividing
320 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) {
323 // FILETIME has an earlier date base than time_t (1/1/1970), so subtract off
331 FILETIME base_ft;
335 memcpy(&base_ul, &base_ft, sizeof(FILETIME));
336 memcpy(&current_ul, &ft, sizeof(FILETIME));
344 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) {
347 // FILETIME has an earlier date base than time_t (1/1/1970), so add in
355 FILETIME base_f
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkTime_win.cpp31 FILETIME ft;
/external/lzma/CPP/Common/
H A DMyWindows.h60 }FILETIME; typedef in typeref:struct:_FILETIME
170 FILETIME filetime;
191 MY_EXTERN_C LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2);
/external/skia/src/ports/
H A DSkTime_win.cpp31 FILETIME ft;

Completed in 1421 milliseconds

12345