Searched refs:last_password_change_usec (Results 1 – 6 of 6) sorted by relevance
/systemd-251/src/nss-systemd/ |
D | userdb-glue.c | 157 ….sp_lstchg = hr->last_password_change_usec == 0 ? 1 : /* map 0 to 1, since 0 means p… in nss_pack_user_record_shadow() 158 hr->last_password_change_usec == UINT64_MAX ? -1 : in nss_pack_user_record_shadow() 159 (long int) (hr->last_password_change_usec / USEC_PER_DAY), in nss_pack_user_record_shadow()
|
/systemd-251/src/shared/ |
D | user-record.c | 35 .last_password_change_usec = UINT64_MAX, in user_record_new() 1513 … json_dispatch_uint64, offsetof(UserRecord, last_password_change_usec), 0 … in user_record_load() 2151 if (h->last_password_change_usec != UINT64_MAX && in user_record_test_password_change_required() 2152 h->last_password_change_usec > n && in user_record_test_password_change_required() 2162 if (h->last_password_change_usec == UINT64_MAX) in user_record_test_password_change_required() 2165 if (h->password_change_min_usec >= UINT64_MAX - h->last_password_change_usec) in user_record_test_password_change_required() 2168 … change_permitted = n >= h->last_password_change_usec + h->password_change_min_usec; in user_record_test_password_change_required() 2175 h->password_change_max_usec >= UINT64_MAX - h->last_password_change_usec)) { in user_record_test_password_change_required() 2180 if (h->last_password_change_usec == UINT64_MAX) in user_record_test_password_change_required() 2189 if (added < UINT64_MAX - h->last_password_change_usec && in user_record_test_password_change_required() [all …]
|
D | user-record-nss.c | 120 SET_IF(hr->last_password_change_usec, in nss_passwd_to_user_record() 152 …AIR_CONDITION(hr->last_password_change_usec != UINT64_MAX, "lastPasswordChangeUSec", JSON_BUILD_UN… in nss_passwd_to_user_record()
|
D | user-record-show.c | 53 if (hr->last_password_change_usec != USEC_INFINITY && in user_record_show() 54 hr->last_password_change_usec != hr->last_change_usec) in user_record_show() 55 printf(" Last Passw.: %s\n", FORMAT_TIMESTAMP(hr->last_password_change_usec)); in user_record_show()
|
D | user-record.h | 248 uint64_t last_password_change_usec; member
|
/systemd-251/src/home/ |
D | user-record-util.c | 751 if (h->last_password_change_usec != UINT64_MAX && h->last_password_change_usec >= n) in user_record_update_last_changed() 765 h->last_password_change_usec = n; in user_record_update_last_changed()
|