Lines Matching refs:Timestamp
41 using Timestamp = time_t;
42 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime_r(timestamp, tm)
45 using Timestamp = time64_t;
46 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime64_r(timestamp, tm)
264 // Convert a UNIX epoch timestamp to a timestamp comprised of three floats for
266 static bool convertTimestampToTimeAndDate(int64_t timestamp,
269 Timestamp time = timestamp;
272 ALOGE("Could not decompose timestamp into components");
281 ALOGE("Could not construct date string from timestamp");
323 // GPS timestamp and datestamp
428 int64_t timestamp = 0;
431 timestamp = entry.data.i64[0];
433 if (convertTimestampToTimeAndDate(timestamp, &triplet, &date)) {