Home
last modified time | relevance | path

Searched refs:tv32 (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/net/
H A Dbpf.c1628 struct timeval32 *tv32; in bpfioctl() local
1632 tv32 = (struct timeval32 *)addr; in bpfioctl()
1634 tv->tv_sec = tv32->tv_sec; in bpfioctl()
1635 tv->tv_usec = tv32->tv_usec; in bpfioctl()
1659 struct timeval32 *tv32; in bpfioctl() local
1672 tv32 = (struct timeval32 *)addr; in bpfioctl()
1673 tv32->tv_sec = tv->tv_sec; in bpfioctl()
1674 tv32->tv_usec = tv->tv_usec; in bpfioctl()
/f-stack/freebsd/kern/
H A Duipc_socket.c3111 struct timeval32 tv32; local
3113 error = sooptcopyin(sopt, &tv32, sizeof tv32,
3114 sizeof tv32);
3115 CP(tv32, tv, tv_sec);
3116 CP(tv32, tv, tv_usec);
3319 struct timeval32 tv32; local
3321 CP(tv, tv32, tv_sec);
3322 CP(tv, tv32, tv_usec);
3323 error = sooptcopyout(sopt, &tv32, sizeof tv32);