Home
last modified time | relevance | path

Searched refs:io_ccache (Results 1 – 10 of 10) sorted by relevance

/freebsd/crypto/krb5/src/ccapi/server/
H A Dccs_ccache.c137 cc_int32 ccs_ccache_reset (ccs_ccache_t io_ccache, in ccs_ccache_reset() argument
146 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in ccs_ccache_reset()
151 io_ccache->creds_version = in_creds_version; in ccs_ccache_reset()
153 if (io_ccache->creds_version == cc_credentials_v5) { in ccs_ccache_reset()
167 io_ccache->kdc_time_offset_v5 = 0; in ccs_ccache_reset()
168 io_ccache->kdc_time_offset_v5_valid = 0; in ccs_ccache_reset()
170 if (io_ccache->v5_principal) { free (io_ccache->v5_principal); } in ccs_ccache_reset()
171 io_ccache->v5_principal = v5_principal; in ccs_ccache_reset()
174 ccs_credentials_list_release (io_ccache->credentials); in ccs_ccache_reset()
175 io_ccache->credentials = credentials; in ccs_ccache_reset()
[all …]
H A Dccs_credentials_iterator.c31 ccs_ccache_t io_ccache, in ccs_credentials_iterator_release() argument
38 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in ccs_credentials_iterator_release()
52 ccs_ccache_t io_ccache, in ccs_credentials_iterator_next() argument
60 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in ccs_credentials_iterator_next()
79 ccs_ccache_t io_ccache, in ccs_credentials_iterator_clone() argument
87 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in ccs_credentials_iterator_clone()
111 ccs_ccache_t io_ccache, in ccs_credentials_iterator_handle_message() argument
129 io_ccache, in ccs_credentials_iterator_handle_message()
135 io_ccache, in ccs_credentials_iterator_handle_message()
141 io_ccache, in ccs_credentials_iterator_handle_message()
H A Dccs_ccache.h37 cc_int32 ccs_ccache_reset (ccs_ccache_t io_ccache,
46 cc_int32 ccs_ccache_release (ccs_ccache_t io_ccache);
48 cc_int32 ccs_ccache_changed (ccs_ccache_t io_ccache,
59 cc_int32 ccs_ccache_notify_default_state_changed (ccs_ccache_t io_ccache,
75 ccs_ccache_t io_ccache,
H A Dccs_credentials_iterator.h32 ccs_ccache_t io_ccache,
H A Dccs_list.c104 static cc_int32 ccs_ccache_list_object_release (ccs_list_object_t io_ccache) in ccs_ccache_list_object_release() argument
106 return cci_check_error (ccs_ccache_release ((ccs_ccache_t) io_ccache)); in ccs_ccache_list_object_release()
/freebsd/crypto/krb5/src/ccapi/lib/
H A Dccapi_ccache.h34 cc_int32 ccapi_ccache_release (cc_ccache_t io_ccache);
39 cc_int32 ccapi_ccache_destroy (cc_ccache_t io_ccache);
41 cc_int32 ccapi_ccache_set_default (cc_ccache_t io_ccache);
53 cc_int32 ccapi_ccache_set_principal (cc_ccache_t io_ccache,
57 cc_int32 ccapi_ccache_store_credentials (cc_ccache_t io_ccache,
60 cc_int32 ccapi_ccache_remove_credentials (cc_ccache_t io_ccache,
69 cc_int32 ccapi_ccache_lock (cc_ccache_t io_ccache,
73 cc_int32 ccapi_ccache_unlock (cc_ccache_t io_ccache);
91 cc_int32 ccapi_ccache_set_kdc_time_offset (cc_ccache_t io_ccache,
95 cc_int32 ccapi_ccache_clear_kdc_time_offset (cc_ccache_t io_ccache,
[all …]
H A Dccapi_ccache.c144 cc_int32 ccapi_ccache_release (cc_ccache_t io_ccache) in ccapi_ccache_release() argument
147 cci_ccache_t ccache = (cci_ccache_t) io_ccache; in ccapi_ccache_release()
149 if (!io_ccache) { err = ccErrBadParam; } in ccapi_ccache_release()
163 cc_int32 ccapi_ccache_destroy (cc_ccache_t io_ccache) in ccapi_ccache_destroy() argument
166 cci_ccache_t ccache = (cci_ccache_t) io_ccache; in ccapi_ccache_destroy()
168 if (!io_ccache) { err = cci_check_error (ccErrBadParam); } in ccapi_ccache_destroy()
178 err = ccapi_ccache_release (io_ccache); in ccapi_ccache_destroy()
186 cc_int32 ccapi_ccache_set_default (cc_ccache_t io_ccache) in ccapi_ccache_set_default() argument
189 cci_ccache_t ccache = (cci_ccache_t) io_ccache; in ccapi_ccache_set_default()
191 if (!io_ccache) { err = cci_check_error (ccErrBadParam); } in ccapi_ccache_set_default()
[all …]
H A Dccapi_v2.c362 ccache_p **io_ccache) in cc_close() argument
367 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in cc_close()
370 err = ccapi_ccache_release (*io_ccache); in cc_close()
374 *io_ccache = NULL; in cc_close()
383 ccache_p **io_ccache) in cc_destroy() argument
388 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in cc_destroy()
391 err = ccapi_ccache_destroy (*io_ccache); in cc_destroy()
395 *io_ccache = NULL; in cc_destroy()
464 ccache_p *io_ccache, in cc_set_principal() argument
473 if (!io_ccache ) { err = cci_check_error (ccErrBadParam); } in cc_set_principal()
[all …]
/freebsd/crypto/krb5/src/include/
H A DCredentialsCache.h922 cc_int32 (*release) (cc_ccache_t io_ccache);
934 cc_int32 (*destroy) (cc_ccache_t io_ccache);
941 cc_int32 (*set_default) (cc_ccache_t io_ccache);
994 cc_int32 (*set_principal) (cc_ccache_t io_ccache,
1017 cc_int32 (*store_credentials) (cc_ccache_t io_ccache,
1040 cc_int32 (*remove_credentials) (cc_ccache_t io_ccache,
1114 cc_int32 (*lock) (cc_ccache_t io_ccache,
1123 cc_int32 (*unlock) (cc_ccache_t io_ccache);
1212 cc_int32 (*set_kdc_time_offset) (cc_ccache_t io_ccache,
1228 cc_int32 (*clear_kdc_time_offset) (cc_ccache_t io_ccache,
H A DCredentialsCache2.h195 ccache_p **io_ccache)