Lines Matching defs:ts
235 return EntryIterator(mEntry).payload<HistTsEntry>().ts;
383 int64_t ts = get_monotonic_ns();
384 if (ts > 0) {
385 log(EVENT_TIMESTAMP, &ts, sizeof(ts));
391 void NBLog::Writer::logTimestamp(const int64_t ts)
396 log(EVENT_TIMESTAMP, &ts, sizeof(ts));
459 data.ts = get_monotonic_ns();
460 if (data.ts > 0) {
634 void NBLog::LockedWriter::logTimestamp(const int64_t ts)
637 Writer::logTimestamp(ts);
823 int64_t ts;
824 memcpy(&ts, &data->ts, sizeof(ts));
825 // TODO: hash for histogram ts and audio state need to match
827 mThreadPerformanceAnalysis[data->author][0 /*hash*/].logTsEntry(ts);
837 // TODO: remove ts if unused
838 int64_t ts;
839 memcpy(&ts, &data->ts, sizeof(ts));
892 int64_t ts;
893 memcpy(&ts, data, sizeof(ts));
894 body->appendFormat("[%d.%03d]", (int) (ts / (1000 * 1000 * 1000)),
895 (int) ((ts / (1000 * 1000)) % 1000));
936 int64_t ts = fmtEntry.timestamp();
938 timestamp->appendFormat("[%d.%03d]", (int) (ts / (1000 * 1000 * 1000)),
939 (int) ((ts / (1000 * 1000)) % 1000));
1042 int64_t ts;
1044 MergeItem(int64_t ts, int index): ts(ts), index(index) {}
1053 return i1.ts > i2.ts || (i1.ts == i2.ts && i1.index > i2.index);
1074 int64_t ts = AbstractEntry::buildEntry(offsets[i])->timestamp();
1075 timestamps.emplace(ts, i);
1088 int64_t ts = AbstractEntry::buildEntry(offsets[index])->timestamp();
1089 timestamps.emplace(ts, index);