Lines Matching refs:FILETIME
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 {
147 FILETIME utc_ft;
194 // Convert to FILETIME.
195 FILETIME ft;
203 FILETIME utc_ft;
211 // FILETIME in UTC.
212 FILETIME utc_ft;
215 // FILETIME in local time if necessary.
217 FILETIME ft;
223 // FILETIME in SYSTEMTIME (exploded).