Lines Matching refs:thd
255 const auto& thd = it.second; in RunConfig() local
256 if (!thd.last_seen) { in RunConfig()
259 if (thd.seq_errors > 0) { in RunConfig()
261 thd.seq_errors); in RunConfig()
263 if (thd.counter_errors > 0) { in RunConfig()
265 thd.counter_errors); in RunConfig()
329 ParsedTraceStats::WriterThread& thd = t_it->second; in ParseTracePacket() local
331 ++thd.packets_seen; in ParseTracePacket()
333 if (thd.last_seen) { in ParseTracePacket()
337 thd.last_seen = true; in ParseTracePacket()
341 thd.rnd_engine = std::minstd_rand0(te.seq_value()); in ParseTracePacket()
343 const uint32_t expected = static_cast<uint32_t>(thd.rnd_engine()); in ParseTracePacket()
345 thd.rnd_engine = std::minstd_rand0(te.seq_value()); // Resync the engine. in ParseTracePacket()
346 ++thd.seq_errors; in ParseTracePacket()
351 if (te.counter() != thd.packets_seen) { in ParseTracePacket()
355 seq_id, thd.packets_seen, te.counter()); in ParseTracePacket()