Lines Matching defs:ccache
91 krb5_ccache ccache,
99 return _kadm5_init_any(client_name, INIT_CREDS, NULL, ccache,
589 krb5_ccache ccache = NULL;
719 * create a ccache to store them in. If INIT_CREDS, use the
720 * ccache we were provided instead.
790 ccache = ccache_in;
792 malloc(strlen(krb5_cc_get_type(handle->context, ccache)) +
793 strlen(krb5_cc_get_name(handle->context, ccache)) + 2);
799 krb5_cc_get_type(handle->context, ccache),
800 krb5_cc_get_name(handle->context, ccache));
820 &ccache)))
823 if ((code = krb5_cc_initialize (handle->context, ccache,
916 if (ccache) {
917 code = krb5_cc_store_cred(handle->context, ccache, &creds);
943 krb5_cc_close(handle->context, ccache);
944 ccache = NULL;
953 krb5_cc_close(handle->context, ccache);
966 if (handle->destroy_cache && ccache)
967 krb5_cc_destroy(handle->context, ccache);
1009 krb5_ccache ccache = NULL;
1017 * krb5_cc_resolve() will resolve a ccache with the same data that
1018 * handle->my_cred points to. If the ccache is a MEMORY ccache then
1019 * gss_release_cred() will free that data (it doesn't do this when ccache
1020 * is a FILE ccache).
1026 handle->cache_name, &ccache)) == 0)
1027 code = krb5_cc_destroy (handle->context, ccache);