Searched refs:unixTime (Results 1 – 4 of 4) sorted by relevance
118 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft) throw() in UnixTimeToFileTime() argument120 UInt64 v = (kUnixTimeOffset + (UInt64)unixTime) * kNumTimeQuantumsInSecond; in UnixTimeToFileTime()125 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw() in UnixTime64ToFileTime() argument127 if (unixTime > kNumSecondsInFileTime - kUnixTimeOffset) in UnixTime64ToFileTime()132 Int64 v = (Int64)kUnixTimeOffset + unixTime; in UnixTime64ToFileTime()150 bool FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime) throw() in FileTimeToUnixTime() argument156 unixTime = 0; in FileTimeToUnixTime()162 unixTime = 0xFFFFFFFF; in FileTimeToUnixTime()165 unixTime = (UInt32)winTime; in FileTimeToUnixTime()
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();
303 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt);
752 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt) in DecodeUnixTime() argument755 time_t sec = (time_t) unixTime; in DecodeUnixTime()