Lines Matching refs:mech_type

616 	const gss_OID mech_type,  in kgss_init_sec_context_wrapped()  argument
685 arg.mech_type.GSS_OID_len = (uint_t)(mech_type != GSS_C_NULL_OID ? in kgss_init_sec_context_wrapped()
686 mech_type->length : 0); in kgss_init_sec_context_wrapped()
687 arg.mech_type.GSS_OID_val = (char *)(mech_type != GSS_C_NULL_OID ? in kgss_init_sec_context_wrapped()
688 mech_type->elements : 0); in kgss_init_sec_context_wrapped()
843 const gss_OID mech_type, in kgss_init_sec_context() argument
894 target_name, mech_type, req_flags, time_req, in kgss_init_sec_context()
929 gss_OID *mech_type, in kgss_accept_sec_context_wrapped() argument
1011 if (mech_type != NULL) in kgss_accept_sec_context_wrapped()
1012 *mech_type = NULL; in kgss_accept_sec_context_wrapped()
1071 if (mech_type != NULL) { in kgss_accept_sec_context_wrapped()
1072 *mech_type = in kgss_accept_sec_context_wrapped()
1074 (*mech_type)->length = in kgss_accept_sec_context_wrapped()
1075 (OM_UINT32)res.mech_type.GSS_OID_len; in kgss_accept_sec_context_wrapped()
1076 (*mech_type)->elements = in kgss_accept_sec_context_wrapped()
1077 (void *)MALLOC((*mech_type)->length); in kgss_accept_sec_context_wrapped()
1078 (void) memcpy((*mech_type)->elements, in kgss_accept_sec_context_wrapped()
1079 res.mech_type.GSS_OID_val, in kgss_accept_sec_context_wrapped()
1080 (*mech_type)->length); in kgss_accept_sec_context_wrapped()
1124 gss_OID *mech_type, in kgss_accept_sec_context() argument
1142 if (mech_type == NULL) in kgss_accept_sec_context()
1143 mech_type = &mt; in kgss_accept_sec_context()
1164 mech_type, output_token, ret_flags, in kgss_accept_sec_context()
1172 __kgss_reset_mech(&kctx->mech, *mech_type); in kgss_accept_sec_context()
1177 if (&mt == mech_type) { in kgss_accept_sec_context()
2010 mech_type, in kgss_display_status() argument
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, in kgss_inquire_cred_by_mech_wrapped() argument
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, in kgss_inquire_cred_by_mech() argument
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; in __kgss_reset_mech()
2785 mech->mech_type.elements = MALLOC(mech_oid->length); in __kgss_reset_mech()
2786 bcopy(mech_oid->elements, mech->mech_type.elements, mech_oid->length); in __kgss_reset_mech()
2833 if ((mech->mech_type.length == type->length) && in __kgss_get_mechanism()
2834 (bcmp(mech->mech_type.elements, type->elements, in __kgss_get_mechanism()