Lines Matching refs:when
68 struct timeval when; /* this packet's due time */ member
635 struct timeval *when = &hinfo->qin_utime; in ngp_rcvdata() local
636 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec in ngp_rcvdata()
637 && when->tv_usec < now->tv_usec)) { in ngp_rcvdata()
638 when->tv_sec = now->tv_sec; in ngp_rcvdata()
639 when->tv_usec = now->tv_usec; in ngp_rcvdata()
743 struct timeval *when; in pipe_dequeue() local
755 when = &hinfo->qin_utime; in pipe_dequeue()
756 if (when->tv_sec > now->tv_sec || (when->tv_sec == now->tv_sec in pipe_dequeue()
757 && when->tv_usec > now->tv_usec)) in pipe_dequeue()
815 when = &ngp_h->when; in pipe_dequeue()
816 when->tv_sec = hinfo->qin_utime.tv_sec; in pipe_dequeue()
817 when->tv_usec = hinfo->qin_utime.tv_usec; in pipe_dequeue()
857 when->tv_usec += priv->delay; in pipe_dequeue()
858 when->tv_sec += when->tv_usec / 1000000; in pipe_dequeue()
859 when->tv_usec = when->tv_usec % 1000000; in pipe_dequeue()
869 when = &ngp_h->when; in pipe_dequeue()
871 if (when->tv_sec > now->tv_sec || in pipe_dequeue()
872 (when->tv_sec == now->tv_sec && in pipe_dequeue()
873 when->tv_usec > now->tv_usec)) in pipe_dequeue()