Lines Matching refs:UserRecord
54 static int home_start_work(Home *h, const char *verb, UserRecord *hr, UserRecord *secret);
58 static int suitable_home_record(UserRecord *hr) { in suitable_home_record()
94 int home_new(Manager *m, UserRecord *hr, const char *sysfs, Home **ret) { in home_new()
226 int home_set_record(Home *h, UserRecord *hr) { in home_set_record()
227 _cleanup_(user_record_unrefp) UserRecord *new_hr = NULL; in home_set_record()
500 static int home_parse_worker_stdout(int _fd, UserRecord **ret) { in home_parse_worker_stdout()
503 _cleanup_(user_record_unrefp) UserRecord *hr = NULL; in home_parse_worker_stdout()
553 static int home_verify_user_record(Home *h, UserRecord *hr, bool *ret_signed_locally, sd_bus_error … in home_verify_user_record()
668 static void home_fixate_finish(Home *h, int ret, UserRecord *hr) { in home_fixate_finish()
670 _cleanup_(user_record_unrefp) UserRecord *secret = NULL; in home_fixate_finish()
743 static void home_activate_finish(Home *h, int ret, UserRecord *hr) { in home_activate_finish()
794 static void home_deactivate_finish(Home *h, int ret, UserRecord *hr) { in home_deactivate_finish()
819 static void home_remove_finish(Home *h, int ret, UserRecord *hr) { in home_remove_finish()
864 static void home_create_finish(Home *h, int ret, UserRecord *hr) { in home_create_finish()
905 static void home_change_finish(Home *h, int ret, UserRecord *hr) { in home_change_finish()
944 static void home_locking_finish(Home *h, int ret, UserRecord *hr) { in home_locking_finish()
974 static void home_unlocking_finish(Home *h, int ret, UserRecord *hr) { in home_unlocking_finish()
1010 static void home_authenticating_finish(Home *h, int ret, UserRecord *hr) { in home_authenticating_finish()
1050 _cleanup_(user_record_unrefp) UserRecord *hr = NULL; in home_on_worker_process()
1137 static int home_start_work(Home *h, const char *verb, UserRecord *hr, UserRecord *secret) { in home_start_work()
1298 UserRecord *secret, in home_fixate_internal()
1321 int home_fixate(Home *h, UserRecord *secret, sd_bus_error *error) { in home_fixate()
1348 static int home_activate_internal(Home *h, UserRecord *secret, HomeState for_state, sd_bus_error *e… in home_activate_internal()
1362 int home_activate(Home *h, UserRecord *secret, sd_bus_error *error) { in home_activate()
1395 static int home_authenticate_internal(Home *h, UserRecord *secret, HomeState for_state, sd_bus_erro… in home_authenticate_internal()
1409 int home_authenticate(Home *h, UserRecord *secret, sd_bus_error *error) { in home_authenticate()
1482 int home_create(Home *h, UserRecord *secret, sd_bus_error *error) { in home_create()
1562 … int user_record_extend_with_binding(UserRecord *hr, UserRecord *with_binding, UserRecordLoadFlags… in user_record_extend_with_binding()
1564 _cleanup_(user_record_unrefp) UserRecord *nr = NULL; in user_record_extend_with_binding()
1596 UserRecord *hr, in home_update_internal()
1597 UserRecord *secret, in home_update_internal()
1600 … _cleanup_(user_record_unrefp) UserRecord *new_hr = NULL, *saved_secret = NULL, *signed_hr = NULL; in home_update_internal()
1670 int home_update(Home *h, UserRecord *hr, sd_bus_error *error) { in home_update()
1708 UserRecord *secret, in home_resize()
1712 _cleanup_(user_record_unrefp) UserRecord *c = NULL; in home_resize()
1751 _cleanup_(user_record_unrefp) UserRecord *signed_c = NULL; in home_resize()
1813 UserRecord *new_secret, in home_passwd()
1814 UserRecord *old_secret, in home_passwd()
1817 _cleanup_(user_record_unrefp) UserRecord *c = NULL, *merged_secret = NULL, *signed_c = NULL; in home_passwd()
1964 static int home_unlock_internal(Home *h, UserRecord *secret, HomeState for_state, sd_bus_error *err… in home_unlock_internal()
1978 int home_unlock(Home *h, UserRecord *secret, sd_bus_error *error) { in home_unlock()
2509 UserRecord **ret) { in home_augment_status()
2513 _cleanup_(user_record_unrefp) UserRecord *ur = NULL; in home_augment_status()
2689 int (*call)(Home *h, UserRecord *secret, HomeState for_state, sd_bus_error *error) = NULL; in home_dispatch_acquire()