Lines Matching refs:now
210 time_t now;
226 now = time(NULL);
227 printf("[Status] Started at: %s", ctime(&now));
570 isc_uint64_t now, run_time, req_time;
591 now = get_time();
592 while (!interrupted && now < times->stop_time) {
601 now = get_time();
606 run_time = now - times->start_time;
611 now = get_time();
623 now = get_time();
654 now = get_time();
661 now = get_time();
667 q->timestamp = now;
693 process_timeouts(threadinfo_t *tinfo, isc_uint64_t now)
702 if (q == NULL || q->timestamp > now ||
703 now - q->timestamp < config->timeout)
721 } while (q != NULL && q->timestamp < now &&
722 now - q->timestamp >= config->timeout);
746 isc_uint64_t now;
753 now = get_time();
762 recvd->when = now;
803 isc_uint64_t now, latency;
812 now = get_time();
815 process_timeouts(tinfo, now);
926 now = get_time();
943 isc_uint64_t now;
959 now = get_time();
961 interval_time = now - last_interval_time;
965 (unsigned int)(now / MILLION),
966 (unsigned int)(now % MILLION), qps);
967 last_interval_time = now;