Lines Matching refs:timestamp

73     // skip timestamp
82 timespec NBLog::FormatEntry::timestamp() const {
93 // skip timestamp
107 // copy timestamp
397 case 't': // timestamp
714 String8 timestamp, body;
718 // TODO timestamp empty here, only other choice to wait for the first timestamp event in the
719 // log to push it out. Consider keeping the timestamp/body between calls to readAt().
720 dumpLine(timestamp, body);
729 timestamp.appendFormat("[%*s]", (int) width + 4, "");
772 dumpLine(timestamp, body);
775 timestamp.clear();
777 timestamp.appendFormat("[%d.%03d to .%.03d by .%.03d to .%.03d]",
785 timestamp.appendFormat("[%d.%03d]", (int) ts.tv_sec,
802 entry = handleFormat(FormatEntry(entry), &timestamp, &body);
816 dumpLine(timestamp, body);
821 // dumpLine(timestamp, body);
832 void NBLog::Reader::dumpLine(const String8 &timestamp, String8 &body)
835 dprintf(mFd, "%.*s%s %s\n", mIndent, "", timestamp.string(), body.string());
837 ALOGI("%.*s%s %s", mIndent, "", timestamp.string(), body.string());
872 String8 *timestamp,
874 // log timestamp
875 struct timespec ts = fmtEntry.timestamp();
876 timestamp->clear();
877 timestamp->appendFormat("[%d.%03d]", (int) ts.tv_sec,
923 case 't': // timestamp
925 "NBLog Reader incompatible event for timestamp specifier: %d", event);
973 // composed by a timestamp and the index of the snapshot where the timestamp came from
991 // Merge registered readers, sorted by timestamp
1007 timespec ts = FormatEntry(offsets[i]).timestamp();
1013 // find minimum timestamp
1020 timespec ts = FormatEntry(offsets[index]).timestamp();