/external/lzma/CPP/Windows/ |
Time.h | 11 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);
|
PropVariantConversions.h | 9 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);
|
FileIO.h | 17 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);
|
Time.cpp | 19 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)
|
/external/chromium_org/base/process/ |
process_info_win.cc | 16 FILETIME creation_time = {}; 17 FILETIME ignore = {};
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
ptw32_timespec.c | 51 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/ |
pcputimer.c | 75 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 ExitTime [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
DirItem.h | 13 FILETIME CTime;
14 FILETIME ATime;
15 FILETIME MTime;
57 FILETIME MTime;
|
IFileExtractCallback.h | 26 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
27 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
|
ArchiveExtractCallback.h | 53 FILETIME CTime;
54 FILETIME ATime;
55 FILETIME MTime;
87 HRESULT GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
|
/external/skia/bench/ |
BenchSysTimer_windows.cpp | 15 FILETIME createTime; 16 FILETIME exitTime; 17 FILETIME usrTime; 18 FILETIME sysTime;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
win32.cc | 38 // FILETIME of that time/date, then we add/subtract in appropriate units to 40 // The units of FILETIME are 100ns intervals, so by multiplying by or dividing 43 // FileTime = UnixTime*10000000 + FileTime(1970) 44 // UnixTime = (FileTime-FileTime(1970))/10000000 47 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { 50 // FILETIME has an earlier date base than time_t (1/1/1970), so subtract off 58 FILETIME base_ft; 62 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); [all...] |
win32.h | 81 // Convert FILETIME to time_t 82 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut); 84 // Convert time_t to FILETIME 85 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft); 90 // Convert a FILETIME to a UInt64 91 inline uint64 ToUInt64(const FILETIME& ft) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 131 class FILETIME(Structure): 134 _FILETIME = FILETIME 148 ("ftCreationTime", FILETIME), 149 ("ftLastAccessTime", FILETIME), 150 ("ftLastWriteTime", FILETIME), 160 ("ftCreationTime", FILETIME), 161 ("ftLastAccessTime", FILETIME), 162 ("ftLastWriteTime", FILETIME), 171 'FILETIME', 'FLOAT', 'HACCEL', 'HANDLE', 'HBITMAP', 'HBRUSH',
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 131 class FILETIME(Structure): 134 _FILETIME = FILETIME 148 ("ftCreationTime", FILETIME), 149 ("ftLastAccessTime", FILETIME), 150 ("ftLastWriteTime", FILETIME), 160 ("ftCreationTime", FILETIME), 161 ("ftLastAccessTime", FILETIME), 162 ("ftLastWriteTime", FILETIME), 171 'FILETIME', 'FLOAT', 'HACCEL', 'HANDLE', 'HBITMAP', 'HBRUSH',
|
/external/chromium/base/ |
time_win.cc | 55 // From MSDN, FILETIME "Contains a 64-bit value representing the number of 57 int64 FileTimeToMicroseconds(const FILETIME& ft) { 61 return bit_cast<int64, FILETIME>(ft) / 10; 64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) { 66 "representable in FILETIME"; 70 *ft = bit_cast<FILETIME, int64>(us * 10); 74 FILETIME ft; 94 // The internal representation of Time uses FILETIME, whose epoch is 1601-01-01 142 Time Time::FromFileTime(FILETIME ft) { 146 FILETIME Time::ToFileTime() const [all...] |
/external/chromium_org/base/time/ |
time_win.cc | 55 // From MSDN, FILETIME "Contains a 64-bit value representing the number of 57 int64 FileTimeToMicroseconds(const FILETIME& ft) { 61 return bit_cast<int64, FILETIME>(ft) / 10; 64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) { 66 "representable in FILETIME"; 70 *ft = bit_cast<FILETIME, int64>(us * 10); 74 FILETIME ft; 94 // The internal representation of Time uses FILETIME, whose epoch is 1601-01-01 143 Time Time::FromFileTime(FILETIME ft) { 144 if (bit_cast<int64, FILETIME>(ft) == 0 [all...] |
/external/lzma/CPP/7zip/Common/ |
FileStreams.h | 118 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/ |
ExtractCallbackConsole.h | 33 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/libjingle/source/talk/base/ |
win32.h | 97 // Convert FILETIME to time_t 98 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut); 100 // Convert time_t to FILETIME 101 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft); 106 // Convert a FILETIME to a UInt64 107 inline uint64 ToUInt64(const FILETIME& ft) {
|
win32_unittest.cc | 48 FILETIME ft;
|
win32.cc | 328 // FILETIME of that time/date, then we add/subtract in appropriate units to 330 // The units of FILETIME are 100ns intervals, so by multiplying by or dividing 333 // FileTime = UnixTime*10000000 + FileTime(1970) 334 // UnixTime = (FileTime-FileTime(1970))/10000000 337 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { 340 // FILETIME has an earlier date base than time_t (1/1/1970), so subtract off 348 FILETIME base_ft; 352 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); [all...] |
/external/chromium_org/third_party/skia/src/ports/ |
SkTime_win.cpp | 31 FILETIME ft;
|
/external/lzma/CPP/Common/ |
MyWindows.h | 60 }FILETIME;
170 FILETIME filetime;
member in union:tagPROPVARIANT::__anon22635 191 MY_EXTERN_C LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2);
|
/external/skia/src/ports/ |
SkTime_win.cpp | 31 FILETIME ft;
|