Lines Matching defs:out
2532 u8 *out, size_t out_len)
2541 if (SSL_export_keying_material(ssl, out, out_len, label,
2887 * commented out unless explicitly needed for EAP-FAST in order to be able to
2940 BIO *out;
2948 out = BIO_new(BIO_s_mem());
2949 if (!out)
2952 OCSP_RESPONSE_print(out, rsp, 0);
2953 rlen = BIO_ctrl_pending(out);
2956 BIO_free(out);
2960 res = BIO_read(out, txt, rlen);
2966 BIO_free(out);
2974 BIO *out;
2982 out = BIO_new(BIO_s_mem());
2983 if (!out)
2986 X509_print(out, cert);
2987 rlen = BIO_ctrl_pending(out);
2990 BIO_free(out);
2994 res = BIO_read(out, txt, rlen);
3001 BIO_free(out);
3386 * commented out unless explicitly needed for EAP-FAST in order to be able to