Lines Matching full:timestamp
131 * Get current timestamp in nanoseconds
146 * Populates a timespec data structure from a int64_t timestamp
148 * @param target_ns timestamp in nanoseconds
166 int64_t timestamp, period;
187 timestamp = get_timestamp_monotonic();
188 if (timestamp < 0) {
202 if (timestamp > LLONG_MAX - period) {
203 ALOGE("%s: Timestamp overflow", __func__);
207 timestamp += period;
210 set_timestamp(&target_time, timestamp);