Lines Matching defs:timestamp
252 len += pcapng_optlen(sizeof(tsresol)); /* timestamp */
480 uint64_t timestamp;
592 /* Put timestamp in cycles here - adjust in packet write */
593 timestamp = rte_get_tsc_cycles();
594 epb->timestamp_hi = timestamp >> 32;
595 epb->timestamp_lo = (uint32_t)timestamp;
621 uint64_t cycles, timestamp;
638 /* adjust timestamp recorded in packet */
641 timestamp = pcapng_timestamp(self, cycles);
642 epb->timestamp_hi = timestamp >> 32;
643 epb->timestamp_lo = (uint32_t)timestamp;