Home | History | Annotate | Download | only in libutils

Lines Matching full:timestamp

65  * DEBUG_TIMESTAMP to 1 and call the timestamp routine from a single thread
71 static inline void checkTimeStamps(int64_t timestamp,
84 if (timestamp < prevTimestamp) {
93 timestamp, gettime_method_names[curMethod],
98 *prevTimestampPtr = timestamp;
102 #define checkTimeStamps(timestamp, prevTimestampPtr, prevMethodPtr, curMethod)
113 int64_t timestamp;
132 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
133 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod, METHOD_IOCTL);
134 return timestamp;
140 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
141 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
143 return timestamp;
149 timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
150 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
152 return timestamp;