Lines Matching defs:mech_type

616 	const gss_OID mech_type,
685 arg.mech_type.GSS_OID_len = (uint_t)(mech_type != GSS_C_NULL_OID ?
686 mech_type->length : 0);
687 arg.mech_type.GSS_OID_val = (char *)(mech_type != GSS_C_NULL_OID ?
688 mech_type->elements : 0);
843 const gss_OID mech_type,
894 target_name, mech_type, req_flags, time_req,
929 gss_OID *mech_type,
1011 if (mech_type != NULL)
1012 *mech_type = NULL;
1068 * move mech type returned to mech_type
1071 if (mech_type != NULL) {
1072 *mech_type =
1074 (*mech_type)->length =
1075 (OM_UINT32)res.mech_type.GSS_OID_len;
1076 (*mech_type)->elements =
1077 (void *)MALLOC((*mech_type)->length);
1078 (void) memcpy((*mech_type)->elements,
1079 res.mech_type.GSS_OID_val,
1080 (*mech_type)->length);
1124 gss_OID *mech_type,
1142 if (mech_type == NULL)
1143 mech_type = &mt;
1164 mech_type, output_token, ret_flags,
1172 __kgss_reset_mech(&kctx->mech, *mech_type);
1177 if (&mt == mech_type) {
2010 mech_type,
2017 const gss_OID mech_type;
2042 arg.mech_type.GSS_OID_len = (uint_t)(mech_type != GSS_C_NULL_OID ?
2043 mech_type->length : 0);
2044 arg.mech_type.GSS_OID_val = (char *)(mech_type != GSS_C_NULL_OID ?
2045 mech_type->elements : 0);
2354 mech_type,
2359 gss_OID mech_type;
2386 arg.mech_type.GSS_OID_len =
2387 (uint_t)(mech_type != GSS_C_NULL_OID ?
2388 mech_type->length : 0);
2389 arg.mech_type.GSS_OID_val =
2390 (char *)(mech_type != GSS_C_NULL_OID ?
2391 mech_type->elements : 0);
2423 mech_type,
2427 gss_OID mech_type;
2439 mech_type, uid));
2573 args.mech_type.GSS_OID_len = mechType->length;
2574 args.mech_type.GSS_OID_val = mechType->elements;
2784 mech->mech_type.length = mech_oid->length;
2785 mech->mech_type.elements = MALLOC(mech_oid->length);
2786 bcopy(mech_oid->elements, mech->mech_type.elements, mech_oid->length);
2833 if ((mech->mech_type.length == type->length) &&
2834 (bcmp(mech->mech_type.elements, type->elements,