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

/freebsd-10-stable/usr.sbin/traceroute6/
H A Dtraceroute6.c295 struct tv32 { struct
304 struct tv32 tv; /* time packet left */
652 minlen = ICMP6ECHOLEN + sizeof(struct tv32);
1048 struct tv32 tv32; local
1059 tv32.tv32_sec = htonl(tv.tv_sec);
1060 tv32.tv32_usec = htonl(tv.tv_usec);
1071 bcopy(&tv32, ((u_int8_t *)outpacket + ICMP6ECHOLEN),
1072 sizeof(tv32));
1079 bcopy(&tv32,
[all...]
/freebsd-10-stable/sbin/ping/
H A Dping.c95 #define TIMEVAL_LEN ((int)sizeof(struct tv32))
113 struct tv32 { struct
942 struct tv32 tv32; local
961 tv32.tv32_sec = htonl(now.tv_sec);
962 tv32.tv32_usec = htonl(now.tv_usec);
967 bcopy((void *)&tv32,
969 sizeof(tv32));
1046 struct tv32 tv32; local
[all...]
/freebsd-10-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c660 struct timeval32 tv32; local
665 error = copyin(uap->tv, &tv32, sizeof(tv32));
668 CP(tv32, tv, tv_sec);
669 CP(tv32, tv, tv_usec);
1322 struct timeval32 tv32; local
1328 error = copyin(uap->tv, &tv32, sizeof(tv32));
1331 CP(tv32, tv, tv_sec);
1332 CP(tv32, t
1477 struct timeval32 tv32; local
[all...]
/freebsd-10-stable/sbin/ping6/
H A Dping6.c138 struct tv32 { struct
146 #define ICMP6ECHOTMLEN sizeof(struct tv32)
719 if (datalen >= sizeof(struct tv32)) {
1335 struct tv32 *tv32; local
1337 tv32 = (struct tv32 *)&outpack[ICMP6ECHOLEN];
1338 tv32->tv32_sec = htonl(tv.tv_sec);
1339 tv32->tv32_usec = htonl(tv.tv_usec);
1471 struct tv32 *tp
[all...]
/freebsd-10-stable/sys/net/
H A Dbpf.c1448 struct timeval32 *tv32; local
1452 tv32 = (struct timeval32 *)addr;
1454 tv->tv_sec = tv32->tv_sec;
1455 tv->tv_usec = tv32->tv_usec;
1479 struct timeval32 *tv32; local
1492 tv32 = (struct timeval32 *)addr;
1493 tv32->tv_sec = tv->tv_sec;
1494 tv32->tv_usec = tv->tv_usec;
/freebsd-10-stable/sys/kern/
H A Duipc_socket.c2545 struct timeval32 tv32; local
2547 error = sooptcopyin(sopt, &tv32, sizeof tv32,
2548 sizeof tv32);
2549 CP(tv32, tv, tv_sec);
2550 CP(tv32, tv, tv_usec);
2719 struct timeval32 tv32; local
2721 CP(tv, tv32, tv_sec);
2722 CP(tv, tv32, tv_usec);
2723 error = sooptcopyout(sopt, &tv32, sizeo
[all...]

Completed in 129 milliseconds