Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/net/
H A Dbpf.c2307 struct user32_timeval _tv; in bpfioctl() local
2310 bcopy(addr, &_tv, sizeof(_tv)); in bpfioctl()
2311 tv.tv_sec = _tv.tv_sec; in bpfioctl()
2312 tv.tv_usec = _tv.tv_usec; in bpfioctl()
2325 struct user64_timeval _tv; in bpfioctl() local
2328 bcopy(addr, &_tv, sizeof(_tv)); in bpfioctl()
2329 tv.tv_sec = (__darwin_time_t)_tv.tv_sec; in bpfioctl()
2330 tv.tv_usec = _tv.tv_usec; in bpfioctl()