Lines Matching refs:now
102 struct timespec now; in rtadvd_set_timer() local
105 prog_clock_gettime(CLOCK_MONOTONIC, &now); in rtadvd_set_timer()
106 timespecadd(&now, tm, &timer->tm); in rtadvd_set_timer()
125 struct timespec now; in rtadvd_check_timer() local
128 prog_clock_gettime(CLOCK_MONOTONIC, &now); in rtadvd_check_timer()
134 if (timespeccmp(&tm->tm, &now, <=)) { in rtadvd_check_timer()
139 timespecadd(&tm->tm, &now, &tm->tm); in rtadvd_check_timer()
147 if (timespeccmp(&tm_max, &now, <)) { in rtadvd_check_timer()
151 timespecsub(&tm_max, &now, &returnval); in rtadvd_check_timer()
159 struct timespec now; in rtadvd_timer_rest() local
161 prog_clock_gettime(CLOCK_MONOTONIC, &now); in rtadvd_timer_rest()
162 if (timespeccmp(&timer->tm, &now, <=)) { in rtadvd_timer_rest()
171 timespecsub(&timer->tm, &now, &returnval); in rtadvd_timer_rest()