Home | History | Annotate | Download | only in bio

Lines Matching defs:ibuf

81   char *ibuf;   /* the char array */
99 ctx->ibuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
100 if (ctx->ibuf == NULL) {
115 OPENSSL_free(ctx->ibuf);
130 OPENSSL_free(ctx->ibuf);
161 memcpy(out, &ctx->ibuf[ctx->ibuf_off], i);
197 i = BIO_read(bio->next_bio, ctx->ibuf, ctx->ibuf_size);
340 p1 = ctx->ibuf;
351 if (p1 != ctx->ibuf) {
358 if (ctx->ibuf != p1) {
359 OPENSSL_free(ctx->ibuf);
360 ctx->ibuf = p1;
443 p = &ctx->ibuf[ctx->ibuf_off];
463 i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);