Searched defs:timespec (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/include/androidfw/
H A DZipFileRO.h178 * Utility function to convert ZIP's time format to a timespec struct.
180 static inline void zipTimeToTimespec(long when, struct tm* timespec) { argument
182 timespec->tm_year = ((date >> 9) & 0x7F) + 80; // Zip is years since 1980
183 timespec->tm_mon = (date >> 5) & 0x0F;
184 timespec->tm_mday = date & 0x1F;
186 timespec->tm_hour = (when >> 11) & 0x1F;
187 timespec->tm_min = (when >> 5) & 0x3F;
188 timespec->tm_sec = (when & 0x1F) << 1;

Completed in 281 milliseconds