Lines Matching refs:txtime
63 } txtime; member
150 opt.txtime.ena = true; in cs_parse_args()
151 opt.txtime.delay = atoi(optarg); in cs_parse_args()
254 if (opt.txtime.ena) { in cs_write_cmsg()
258 __u64 txtime; in cs_write_cmsg() local
264 txtime = time_start_mono.tv_sec * (1000ULL * 1000 * 1000) + in cs_write_cmsg()
266 opt.txtime.delay * 1000; in cs_write_cmsg()
269 cmsg_len += CMSG_SPACE(sizeof(txtime)); in cs_write_cmsg()
275 cmsg->cmsg_len = CMSG_LEN(sizeof(txtime)); in cs_write_cmsg()
276 memcpy(CMSG_DATA(cmsg), &txtime, sizeof(txtime)); in cs_write_cmsg()
498 usleep(opt.txtime.delay); in main()