Searched refs:cc_ops (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dcache.c124 for(i = 0; i < context->num_cc_ops && context->cc_ops[i]->prefix; i++) {
125 if(strcmp(context->cc_ops[i]->prefix, ops->prefix) == 0) {
137 const krb5_cc_ops **o = realloc(rk_UNCONST(context->cc_ops),
139 sizeof(context->cc_ops[0]));
145 context->cc_ops = o;
146 context->cc_ops[context->num_cc_ops] = NULL;
149 context->cc_ops[i] = ops;
265 for(i = 0; i < context->num_cc_ops && context->cc_ops[i]->prefix; i++) {
266 size_t prefix_len = strlen(context->cc_ops[i]->prefix);
268 if(strncmp(context->cc_ops[
[all...]
H A Dcontext.c252 context->cc_ops = NULL;
276 const krb5_cc_ops **cc_ops; local
278 context->cc_ops = NULL;
284 cc_ops = malloc(sizeof(cc_ops[0]) * src_context->num_cc_ops);
285 if (cc_ops == NULL) {
291 memcpy(rk_UNCONST(cc_ops), src_context->cc_ops,
292 sizeof(cc_ops[0]) * src_context->num_cc_ops);
293 context->cc_ops
[all...]
H A Dkrb5_locl.h267 const krb5_cc_ops **cc_ops; member in struct:krb5_context_data

Completed in 63 milliseconds