Searched refs:tv32 (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sbin/ping/
H A Dping.c108 #define TIMEVAL_LEN ((int)sizeof(struct tv32))
126 struct tv32 { struct
1052 struct tv32 tv32; local
1075 tv32.tv32_sec = (uint32_t)htonl(now.tv_sec);
1076 tv32.tv32_nsec = (uint32_t)htonl(now.tv_nsec);
1081 bcopy((void *)&tv32,
1083 sizeof(tv32));
1188 struct tv32 tv32; local
[all...]
H A Dping6.c148 struct tv32 { struct
156 #define ICMP6ECHOTMLEN sizeof(struct tv32)
776 if (datalen >= sizeof(struct tv32)) {
1436 struct tv32 tv32; local
1444 tv32.tv32_sec = (uint32_t)htonl(tv.tv_sec);
1445 tv32.tv32_nsec = (uint32_t)htonl(tv.tv_nsec);
1446 memcpy(&outpack[ICMP6ECHOLEN], &tv32, sizeof(tv32));
1594 struct tv32 tp
[all...]
/freebsd-13-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c569 struct timeval32 tv32; local
574 error = copyin(uap->tv, &tv32, sizeof(tv32));
577 CP(tv32, tv, tv_sec);
578 CP(tv32, tv, tv_usec);
1644 struct timeval32 tv32; local
1650 error = copyin(uap->tv, &tv32, sizeof(tv32));
1653 CP(tv32, tv, tv_sec);
1654 CP(tv32, t
1800 struct timeval32 tv32; local
[all...]
/freebsd-13-stable/sys/net/
H A Dbpf.c1628 struct timeval32 *tv32; local
1632 tv32 = (struct timeval32 *)addr;
1634 tv->tv_sec = tv32->tv_sec;
1635 tv->tv_usec = tv32->tv_usec;
1659 struct timeval32 *tv32; local
1672 tv32 = (struct timeval32 *)addr;
1673 tv32->tv_sec = tv->tv_sec;
1674 tv32->tv_usec = tv->tv_usec;
/freebsd-13-stable/sys/kern/
H A Duipc_socket.c3104 struct timeval32 tv32; local
3106 error = sooptcopyin(sopt, &tv32, sizeof tv32,
3107 sizeof tv32);
3108 CP(tv32, tv, tv_sec);
3109 CP(tv32, tv, tv_usec);
3312 struct timeval32 tv32; local
3314 CP(tv, tv32, tv_sec);
3315 CP(tv, tv32, tv_usec);
3316 error = sooptcopyout(sopt, &tv32, sizeo
[all...]

Completed in 76 milliseconds