Lines Matching defs:rqtime
451 timespec_t rqtime;
467 if (copyin(timeoutp, &rqtime, sizeof (timespec_t))) {
478 TIMESPEC32_TO_TIMESPEC(&rqtime, &timeout32)
481 if (itimerspecfix(&rqtime)) {
488 timespecadd(&rqtime, &now);
489 rqtp = &rqtime;
515 if ((now.tv_sec < rqtime.tv_sec) ||
516 ((now.tv_sec == rqtime.tv_sec) &&
517 (now.tv_nsec < rqtime.tv_nsec))) {
518 rmtime = rqtime;