Home | History | Annotate | Download | only in libutils

Lines Matching full:timestamp

66  * DEBUG_TIMESTAMP to 1 and call the timestamp routine from a single thread
78 static inline void checkTimeStamps(int64_t timestamp,
92 if (timestamp < prevTimestamp) {
95 timestamp, gettime_method_names[curMethod],
100 *prevTimestampPtr = timestamp;
105 #define checkTimeStamps(timestamp, prevTimestampPtr, prevMethodPtr, curMethod)
116 int64_t timestamp;
130 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
131 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
133 return timestamp;
151 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
152 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod, METHOD_IOCTL);
153 return timestamp;
159 timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
160 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
162 return timestamp;