Home
last modified time | relevance | path

Searched refs:num_kt_types (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/heimdal/lib/krb5/
H A Dkeytab.c155 (context->num_kt_types + 1) * sizeof(*context->kt_types)); in krb5_kt_register()
161 memcpy(&tmp[context->num_kt_types], ops, in krb5_kt_register()
162 sizeof(tmp[context->num_kt_types])); in krb5_kt_register()
164 context->num_kt_types++; in krb5_kt_register()
223 for(i = 0; i < context->num_kt_types; i++) { in krb5_kt_resolve()
227 if(i == context->num_kt_types) { in krb5_kt_resolve()
H A Dcontext.c302 context->num_kt_types = 0; in kt_ops_register()
319 context->num_kt_types = 0; in kt_ops_copy()
322 if (src_context->num_kt_types == 0) in kt_ops_copy()
325 context->kt_types = malloc(sizeof(context->kt_types[0]) * src_context->num_kt_types); in kt_ops_copy()
332 context->num_kt_types = src_context->num_kt_types; in kt_ops_copy()
334 sizeof(context->kt_types[0]) * src_context->num_kt_types); in kt_ops_copy()
H A Dkrb5_locl.h282 int num_kt_types; /* # of registered keytab types */ member