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

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_time.c150 struct timeval atv; local
154 bzero(&atv, sizeof(atv));
170 atv.tv_sec = user_atv.tv_sec;
171 atv.tv_usec = user_atv.tv_usec;
175 atv.tv_sec = user_atv.tv_sec;
176 atv.tv_usec = user_atv.tv_usec;
184 timevalfix(&atv);
185 if (atv.tv_sec < 0 || (atv
211 struct timeval atv; local
[all...]
H A Dsys_generic.c1066 struct timeval atv; local
1071 atv.tv_sec = atv64.tv_sec;
1072 atv.tv_usec = atv64.tv_usec;
1076 atv.tv_sec = atv32.tv_sec;
1077 atv.tv_usec = atv32.tv_usec;
1081 if (itimerfix(&atv)) {
1087 tvtoabstime(&atv), &sel->abstime);
1426 struct timeval atv; local
1463 atv.tv_sec = uap->timeout / 1000;
1464 atv
2427 struct timeval atv; local
[all...]
H A Dkern_event.c1360 struct timeval atv; local
1381 getmicrouptime(&atv);
1382 timevaladd(&atv, &rtv);
1384 atv.tv_sec = 0;
1385 atv.tv_usec = 0;
1441 &atv, p);
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_rmx.c506 struct timeval atv; local
546 atv.tv_usec = 0;
547 atv.tv_sec = arg.nextstop - timenow;
549 timeout(in6_rtqtimo, rock, tvtohz(&atv));
596 struct timeval atv; local
606 atv.tv_usec = 0;
614 atv.tv_sec = timo - timenow;
616 timeout(in6_mtutimo, rock, tvtohz(&atv));
/darwin-on-arm/xnu/bsd/netinet/
H A Din_rmx.c429 struct timeval atv; local
469 atv.tv_usec = 0;
470 atv.tv_sec = arg.nextstop - timenow;
472 timeout(in_rtqtimo_funnel, rock, tvtohz(&atv));
H A Dip_icmp.c852 struct timeval atv; local
855 microtime(&atv);
856 t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;

Completed in 88 milliseconds