Home | History | Annotate | Download | only in krb5

Lines Matching refs:context

45     krb5_context context = ptr;
47 if (context == NULL)
49 krb5_free_context(context);
53 _gsskrb5_init (krb5_context *context)
69 *context = HEIMDAL_getspecific(context_key);
70 if (*context == NULL) {
72 ret = krb5_init_context(context);
74 HEIMDAL_setspecific(context_key, *context, ret);
76 krb5_free_context(*context);
77 *context = NULL;