Lines Matching refs:ts
244 const int64_t ts = it.payload<int64_t>(); in dump() local
245 body.appendFormat("EVENT_OVERRUN,%lld", static_cast<long long>(ts)); in dump()
253 const int64_t ts = it.payload<int64_t>(); in dump() local
254 body.appendFormat("EVENT_UNDERRUN,%lld", static_cast<long long>(ts)); in dump()
297 const int64_t ts = fmtEntry.timestamp(); in handleFormat() local
299 timestamp->appendFormat("[%d.%03d]", (int) (ts / (1000 * 1000 * 1000)), in handleFormat()
300 (int) ((ts / (1000 * 1000)) % 1000)); in handleFormat()
419 int64_t ts; in appendTimestamp() local
420 memcpy(&ts, data, sizeof(ts)); in appendTimestamp()
421 body->appendFormat("[%d.%03d]", (int) (ts / (1000 * 1000 * 1000)), in appendTimestamp()
422 (int) ((ts / (1000 * 1000)) % 1000)); in appendTimestamp()