Lines Matching full:major

85     OM_uint32 minor, major;  in wrap_std()  local
98 major = gss_wrap_iov(&minor, ctx, conf, GSS_C_QOP_DEFAULT, &oconf, iov, 4); in wrap_std()
99 check_gsserr("gss_wrap_iov(std)", major, minor); in wrap_std()
109 OM_uint32 major, minor; in test_standard_wrap() local
126 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, iov, 4); in test_standard_wrap()
127 check_gsserr("gss_unwrap_iov(std1)", major, minor); in test_standard_wrap()
142 major = gss_unwrap(&minor, ctx2, &input, &output, &oconf, &qop); in test_standard_wrap()
143 check_gsserr("gss_unwrap(std2)", major, minor); in test_standard_wrap()
161 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, stiov, 2); in test_standard_wrap()
162 check_gsserr("gss_unwrap_iov(std3)", major, minor); in test_standard_wrap()
178 major = gss_wrap(&minor, ctx1, conf, GSS_C_QOP_DEFAULT, &input, &oconf, in test_standard_wrap()
180 check_gsserr("gss_wrap(std4)", major, minor); in test_standard_wrap()
186 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, stiov, 2); in test_standard_wrap()
187 check_gsserr("gss_unwrap_iov(std4)", major, minor); in test_standard_wrap()
209 OM_uint32 major, minor; in wrap_aead() local
225 major = gss_wrap_iov_length(&minor, ctx, conf, GSS_C_QOP_DEFAULT, &oconf, in wrap_aead()
227 check_gsserr("gss_wrap_iov_length(aead)", major, minor); in wrap_aead()
246 major = gss_wrap_iov(&minor, ctx, conf, GSS_C_QOP_DEFAULT, &oconf, iov, 5); in wrap_aead()
247 check_gsserr("gss_wrap_iov(aead)", major, minor); in wrap_aead()
263 OM_uint32 major, minor; in test_aead() local
276 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, iov, 5); in test_aead()
277 check_gsserr("gss_unwrap_iov(aead1)", major, minor); in test_aead()
293 major = gss_unwrap_aead(&minor, ctx2, &input, &assoc, &output, &oconf, in test_aead()
295 check_gsserr("gss_unwrap_aead(aead2)", major, minor); in test_aead()
312 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, stiov, 3); in test_aead()
313 check_gsserr("gss_unwrap_iov(aead3)", major, minor); in test_aead()
331 major = gss_wrap_aead(&minor, ctx1, conf, GSS_C_QOP_DEFAULT, &assoc, in test_aead()
333 check_gsserr("gss_wrap_aead(aead4)", major, minor); in test_aead()
341 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, stiov, 3); in test_aead()
342 check_gsserr("gss_unwrap_iov(aead4)", major, minor); in test_aead()
365 OM_uint32 minor, major; in mic() local
384 major = gss_get_mic_iov_length(&minor, ctx, GSS_C_QOP_DEFAULT, iov, 4); in mic()
385 check_gsserr("gss_get_mic_iov_length", major, minor); in mic()
388 major = gss_get_mic_iov(&minor, ctx, GSS_C_QOP_DEFAULT, iov, 4); in mic()
389 check_gsserr("gss_get_mic_iov", major, minor); in mic()
399 OM_uint32 major, minor; in test_mic() local
414 major = gss_verify_mic_iov(&minor, ctx2, &qop, iov, 4); in test_mic()
415 check_gsserr("gss_verify_mic_iov(mic1)", major, minor); in test_mic()
421 major = gss_verify_mic(&minor, ctx2, &concatbuf, &iov[3].buffer, &qop); in test_mic()
422 check_gsserr("gss_verify_mic(mic2)", major, minor); in test_mic()
429 major = gss_get_mic(&minor, ctx1, GSS_C_QOP_DEFAULT, &concatbuf, &micbuf); in test_mic()
430 check_gsserr("gss_get_mic(mic3)", major, minor); in test_mic()
432 major = gss_verify_mic_iov(&minor, ctx2, &qop, iov, 4); in test_mic()
433 check_gsserr("gss_verify_mic_iov(mic3)", major, minor); in test_mic()
443 OM_uint32 major, minor; in test_dce() local
464 major = gss_wrap_iov(&minor, ctx1, conf, GSS_C_QOP_DEFAULT, &oconf, iov, in test_dce()
466 check_gsserr("gss_wrap_iov(dce)", major, minor); in test_dce()
478 major = gss_unwrap_iov(&minor, ctx2, &oconf, &qop, iov, 4); in test_dce()
479 check_gsserr("gss_unwrap_iov(std1)", major, minor); in test_dce()