Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libgss/
H A Dg_initialize.c632 gss_mechanism_ext mech_ext; local
635 if ((aMech = searchMechList(oid)) != NULL && aMech->mech_ext != NULL)
636 return (aMech->mech_ext);
646 mech_ext = (gss_mechanism_ext)malloc(sizeof (struct gss_config_ext));
648 if (mech_ext == NULL)
661 mech_ext->gss_acquire_cred_with_password =
668 if (aMech->mech_ext == NULL)
669 aMech->mech_ext = mech_ext;
671 free(mech_ext); /* we raced and lost; don't leak */
675 return (aMech->mech_ext);
H A Dg_acquire_cred_with_pw.c244 gss_mechanism_ext mech_ext; local
281 if ((mech_ext = __gss_get_mechanism_ext(desired_mech)) == NULL ||
282 mech_ext->gss_acquire_cred_with_password == NULL)
320 status = mech_ext->gss_acquire_cred_with_password(mech->context,
/illumos-gate/usr/src/uts/common/gssapi/include/
H A DmechglueP.h523 gss_mechanism_ext mech_ext; /* Solaris extensions */ member