Lines Matching refs:when
70 struct timeval when; /* this packet's due time */ member
638 struct timeval *when = &hinfo->qin_utime; in ngp_rcvdata() local
639 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec in ngp_rcvdata()
640 && when->tv_usec < now->tv_usec)) { in ngp_rcvdata()
641 when->tv_sec = now->tv_sec; in ngp_rcvdata()
642 when->tv_usec = now->tv_usec; in ngp_rcvdata()
741 struct timeval *when; in pipe_dequeue() local
753 when = &hinfo->qin_utime; in pipe_dequeue()
754 if (when->tv_sec > now->tv_sec || (when->tv_sec == now->tv_sec in pipe_dequeue()
755 && when->tv_usec > now->tv_usec)) in pipe_dequeue()
802 when = &ngp_h->when; in pipe_dequeue()
803 when->tv_sec = hinfo->qin_utime.tv_sec; in pipe_dequeue()
804 when->tv_usec = hinfo->qin_utime.tv_usec; in pipe_dequeue()
844 when->tv_usec += priv->delay; in pipe_dequeue()
845 when->tv_sec += when->tv_usec / 1000000; in pipe_dequeue()
846 when->tv_usec = when->tv_usec % 1000000; in pipe_dequeue()
856 when = &ngp_h->when; in pipe_dequeue()
858 if (when->tv_sec > now->tv_sec || in pipe_dequeue()
859 (when->tv_sec == now->tv_sec && in pipe_dequeue()
860 when->tv_usec > now->tv_usec)) in pipe_dequeue()