Lines Matching refs:when
69 struct timeval when; /* this packet's due time */ member
636 struct timeval *when = &hinfo->qin_utime; in ngp_rcvdata() local
637 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec in ngp_rcvdata()
638 && when->tv_usec < now->tv_usec)) { in ngp_rcvdata()
639 when->tv_sec = now->tv_sec; in ngp_rcvdata()
640 when->tv_usec = now->tv_usec; in ngp_rcvdata()
738 struct timeval *when; in pipe_dequeue() local
750 when = &hinfo->qin_utime; in pipe_dequeue()
751 if (when->tv_sec > now->tv_sec || (when->tv_sec == now->tv_sec in pipe_dequeue()
752 && when->tv_usec > now->tv_usec)) in pipe_dequeue()
799 when = &ngp_h->when; in pipe_dequeue()
800 when->tv_sec = hinfo->qin_utime.tv_sec; in pipe_dequeue()
801 when->tv_usec = hinfo->qin_utime.tv_usec; in pipe_dequeue()
841 when->tv_usec += priv->delay; in pipe_dequeue()
842 when->tv_sec += when->tv_usec / 1000000; in pipe_dequeue()
843 when->tv_usec = when->tv_usec % 1000000; in pipe_dequeue()
853 when = &ngp_h->when; in pipe_dequeue()
855 if (when->tv_sec > now->tv_sec || in pipe_dequeue()
856 (when->tv_sec == now->tv_sec && in pipe_dequeue()
857 when->tv_usec > now->tv_usec)) in pipe_dequeue()