Home
last modified time | relevance | path

Searched refs:last_change_usec (Results 1 – 6 of 6) sorted by relevance

/systemd-251/src/shared/
Duser-record-show.c45 if (hr->last_change_usec != USEC_INFINITY) { in user_record_show()
46 printf(" Last Change: %s\n", FORMAT_TIMESTAMP(hr->last_change_usec)); in user_record_show()
48 if (hr->last_change_usec > now(CLOCK_REALTIME)) in user_record_show()
54 hr->last_password_change_usec != hr->last_change_usec) in user_record_show()
520 if (gr->last_change_usec != USEC_INFINITY) in group_record_show()
521 printf(" Last Change: %s\n", FORMAT_TIMESTAMP(gr->last_change_usec)); in group_record_show()
Dgroup-record.h19 uint64_t last_change_usec; member
Duser-record.c34 .last_change_usec = UINT64_MAX, in user_record_new()
1512 …ED, json_dispatch_uint64, offsetof(UserRecord, last_change_usec), … in user_record_load()
2036 if (a->last_change_usec == b->last_change_usec) in user_record_compare_last_change()
2040 if (a->last_change_usec == UINT64_MAX) in user_record_compare_last_change()
2042 if (b->last_change_usec == UINT64_MAX) in user_record_compare_last_change()
2045 return CMP(a->last_change_usec, b->last_change_usec); in user_record_compare_last_change()
2119 if (h->last_change_usec != UINT64_MAX && in user_record_test_blocked()
2120 … h->last_change_usec > n) /* Complain during log-ins when the record is from the future */ in user_record_test_blocked()
Dgroup-record.c18 .last_change_usec = UINT64_MAX, in group_record_new()
198 …ANT_UNSIGNED, json_dispatch_uint64, offsetof(GroupRecord, last_change_usec), 0 }, in group_record_load()
Duser-record.h247 uint64_t last_change_usec; member
/systemd-251/src/home/
Duser-record-util.c207 if (host->last_change_usec != UINT64_MAX && in user_record_reconcile()
208 … (embedded->last_change_usec == UINT64_MAX || host->last_change_usec > embedded->last_change_usec)) in user_record_reconcile()
214 else if (host->last_change_usec == embedded->last_change_usec) { in user_record_reconcile()
749 if (h->last_change_usec != UINT64_MAX && h->last_change_usec >= n) in user_record_update_last_changed()
768 h->last_change_usec = n; in user_record_update_last_changed()