Lines Matching refs:mechanisms
2177 mechanisms, in kgss_inquire_cred_wrapped() argument
2185 gss_OID_set *mechanisms;
2212 if (mechanisms != NULL)
2213 *mechanisms = NULL;
2289 res.mechanisms.GSS_OID_SET_len != 0 &&
2290 mechanisms != NULL) {
2291 *mechanisms = (gss_OID_set) MALLOC(sizeof (gss_OID_set_desc));
2292 (*mechanisms)->count =
2293 (int)res.mechanisms.GSS_OID_SET_len;
2294 (*mechanisms)->elements = (gss_OID)
2295 MALLOC(sizeof (gss_OID_desc) * (*mechanisms)->count);
2297 for (i = 0; i < (*mechanisms)->count; i++) {
2298 (*mechanisms)->elements[i].length = (OM_uint32)
2299 res.mechanisms.GSS_OID_SET_val[i].GSS_OID_len;
2300 (*mechanisms)->elements[i].elements =
2301 (void *) MALLOC((*mechanisms)->elements[i].length);
2302 (void) memcpy((*mechanisms)->elements[i].elements,
2303 res.mechanisms.GSS_OID_SET_val[i].GSS_OID_val,
2304 (*mechanisms)->elements[i].length);
2308 mechanisms != NULL)
2309 (*mechanisms) = NULL;
2328 mechanisms, in kgss_inquire_cred() argument
2335 gss_OID_set * mechanisms;
2347 name, lifetime, cred_usage, mechanisms, uid));