Lines Matching refs:mechanisms
42 mechanisms) in gss_inquire_cred() argument
49 gss_OID_set *mechanisms;
66 if (mechanisms != NULL)
67 *mechanisms = GSS_C_NO_OID_SET;
92 mechanisms);
109 if (mechanisms && *mechanisms) {
112 mechanisms);
168 if (mechanisms != NULL) {
170 *mechanisms = (gss_OID_set) malloc(sizeof (gss_OID_set_desc));
171 if (*mechanisms == NULL)
174 (*mechanisms)->count = 0;
175 (*mechanisms)->elements =
179 if ((*mechanisms)->elements == NULL) {
180 free(*mechanisms);
181 *mechanisms = NULL;
186 (*mechanisms)->elements[i].elements = (void *)
188 if ((*mechanisms)->elements[i].elements == NULL)
190 g_OID_copy(&(*mechanisms)->elements[i],
192 (*mechanisms)->count++;
205 if (mechanisms && *mechanisms != NULL)
206 (void) gss_release_oid_set(&temp_minor_status, mechanisms);