Lines Matching refs:timestamp
97 r = CMP(x->timestamp, y->timestamp); in client_context_compare()
128 .timestamp = USEC_INFINITY, in client_context_new()
147 c->timestamp = USEC_INFINITY; in client_context_reset()
509 usec_t timestamp) { in client_context_really_refresh() argument
515 if (timestamp == USEC_INFINITY) in client_context_really_refresh()
516 timestamp = now(CLOCK_MONOTONIC); in client_context_really_refresh()
532 c->timestamp = timestamp; in client_context_really_refresh()
546 usec_t timestamp) { in client_context_maybe_refresh() argument
551 if (timestamp == USEC_INFINITY) in client_context_maybe_refresh()
552 timestamp = now(CLOCK_MONOTONIC); in client_context_maybe_refresh()
555 if (c->timestamp == USEC_INFINITY) in client_context_maybe_refresh()
560 if (c->n_ref == 0 && c->timestamp + MAX_USEC < timestamp) { in client_context_maybe_refresh()
566 if (c->timestamp + REFRESH_USEC < timestamp) in client_context_maybe_refresh()
582 client_context_really_refresh(s, c, ucred, label, label_size, unit_id, timestamp); in client_context_maybe_refresh()