Lines Matching refs:bio
32 BIO *bio;
37 bio = BIO_new(BIO_s_mem());
39 BIO_printf(bio, "POST %s%s%s HTTP/1.0\r\n"
48 if (i2d_OCSP_REQUEST_bio(bio, req) != 1) {
49 BIO_free(bio);
53 return bio;
180 * BIO 'bio', and return the decoded OCSP response object, or NULL on
182 static OCSP_RESPONSE *read_response(apr_socket_t *sd, BIO *bio, conn_rec *c,
265 BIO_write(bio, data, (int)len);
273 * bio. */
274 response = d2i_OCSP_RESPONSE_bio(bio, NULL);
291 BIO *bio;
293 bio = serialize_request(request, uri);
294 if (bio == NULL) {
301 sd = send_request(bio, uri, timeout, c, p);
304 BIO_free(bio);
309 (void)BIO_reset(bio);
311 response = read_response(sd, bio, c, p);
314 BIO_free(bio);