Lines Matching defs:now
111 ngp_f->vtime.tv_usec = now->tv_usec + ((uint64_t) (plen) \
114 ngp_f->vtime.tv_sec = now->tv_sec + \
593 struct timeval *now = &uuptime;
629 microuptime(now);
636 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec
637 && when->tv_usec < now->tv_usec)) {
638 when->tv_sec = now->tv_sec;
639 when->tv_usec = now->tv_usec;
718 pipe_dequeue(hinfo, now);
736 pipe_dequeue(struct hookinfo *hinfo, struct timeval *now) {
756 if (when->tv_sec > now->tv_sec || (when->tv_sec == now->tv_sec
757 && when->tv_usec > now->tv_usec))
871 if (when->tv_sec > now->tv_sec ||
872 (when->tv_sec == now->tv_sec &&
873 when->tv_usec > now->tv_usec))
910 struct timeval now;
913 microuptime(&now);
915 pipe_dequeue(&priv->upper, &now);
917 pipe_dequeue(&priv->lower, &now);