Lines Matching refs:UINT64_MAX
34 .last_change_usec = UINT64_MAX, in user_record_new()
35 .last_password_change_usec = UINT64_MAX, in user_record_new()
38 .not_before_usec = UINT64_MAX, in user_record_new()
39 .not_after_usec = UINT64_MAX, in user_record_new()
43 .disk_size = UINT64_MAX, in user_record_new()
44 .disk_size_relative = UINT64_MAX, in user_record_new()
45 .tasks_max = UINT64_MAX, in user_record_new()
46 .memory_high = UINT64_MAX, in user_record_new()
47 .memory_max = UINT64_MAX, in user_record_new()
48 .cpu_weight = UINT64_MAX, in user_record_new()
49 .io_weight = UINT64_MAX, in user_record_new()
56 .luks_volume_key_size = UINT64_MAX, in user_record_new()
57 .luks_pbkdf_time_cost_usec = UINT64_MAX, in user_record_new()
58 .luks_pbkdf_memory_cost = UINT64_MAX, in user_record_new()
59 .luks_pbkdf_parallel_threads = UINT64_MAX, in user_record_new()
60 .disk_usage = UINT64_MAX, in user_record_new()
61 .disk_free = UINT64_MAX, in user_record_new()
62 .disk_ceiling = UINT64_MAX, in user_record_new()
63 .disk_floor = UINT64_MAX, in user_record_new()
65 .good_authentication_counter = UINT64_MAX, in user_record_new()
66 .bad_authentication_counter = UINT64_MAX, in user_record_new()
67 .last_good_authentication_usec = UINT64_MAX, in user_record_new()
68 .last_bad_authentication_usec = UINT64_MAX, in user_record_new()
69 .ratelimit_begin_usec = UINT64_MAX, in user_record_new()
70 .ratelimit_count = UINT64_MAX, in user_record_new()
71 .ratelimit_interval_usec = UINT64_MAX, in user_record_new()
72 .ratelimit_burst = UINT64_MAX, in user_record_new()
76 .stop_delay_usec = UINT64_MAX, in user_record_new()
78 .password_change_min_usec = UINT64_MAX, in user_record_new()
79 .password_change_max_usec = UINT64_MAX, in user_record_new()
80 .password_change_warn_usec = UINT64_MAX, in user_record_new()
81 .password_change_inactive_usec = UINT64_MAX, in user_record_new()
572 *limit = UINT64_MAX; in json_dispatch_tasks_or_memory_max()
580 if (k <= 0 || k >= UINT64_MAX) in json_dispatch_tasks_or_memory_max()
581 …eld '%s' is not in valid range %" PRIu64 "…%" PRIu64 ".", strna(name), (uint64_t) 1, UINT64_MAX-1); in json_dispatch_tasks_or_memory_max()
591 *weight = UINT64_MAX; in json_dispatch_weight()
1820 if (h->luks_volume_key_size == UINT64_MAX) in user_record_luks_volume_key_size()
1837 if (h->luks_pbkdf_time_cost_usec == UINT64_MAX) in user_record_luks_pbkdf_time_cost_usec()
1847 if (h->luks_pbkdf_memory_cost == UINT64_MAX) in user_record_luks_pbkdf_memory_cost()
1857 if (h->luks_pbkdf_parallel_threads == UINT64_MAX) in user_record_luks_pbkdf_parallel_threads()
1927 if (h->ratelimit_interval_usec == UINT64_MAX) in user_record_ratelimit_interval_usec()
1936 if (h->ratelimit_burst == UINT64_MAX) in user_record_ratelimit_burst()
1994 if (h->ratelimit_begin_usec == UINT64_MAX || in user_record_ratelimit_next_try()
1995 h->ratelimit_count == UINT64_MAX) in user_record_ratelimit_next_try()
1996 return UINT64_MAX; in user_record_ratelimit_next_try()
2001 return UINT64_MAX; in user_record_ratelimit_next_try()
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()
2114 if (h->not_before_usec != UINT64_MAX && n < h->not_before_usec) in user_record_test_blocked()
2116 if (h->not_after_usec != UINT64_MAX && n > h->not_after_usec) in user_record_test_blocked()
2119 if (h->last_change_usec != UINT64_MAX && in user_record_test_blocked()
2151 if (h->last_password_change_usec != UINT64_MAX && in user_record_test_password_change_required()
2153 (h->password_change_min_usec != UINT64_MAX || in user_record_test_password_change_required()
2154 h->password_change_max_usec != UINT64_MAX || in user_record_test_password_change_required()
2155 h->password_change_inactive_usec != UINT64_MAX)) in user_record_test_password_change_required()
2159 if (h->password_change_min_usec != UINT64_MAX) { 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()
2174 if (!(h->password_change_max_usec == UINT64_MAX || 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()
2184 if (h->password_change_inactive_usec != UINT64_MAX && in user_record_test_password_change_required()
2185 h->password_change_inactive_usec < UINT64_MAX - h->password_change_max_usec) { in user_record_test_password_change_required()
2189 if (added < UINT64_MAX - h->last_password_change_usec && in user_record_test_password_change_required()
2200 if (h->password_change_warn_usec != UINT64_MAX && in user_record_test_password_change_required()