Lines Matching refs:next
108 BIO *next; in enc_read() local
114 next = BIO_next(b); in enc_read()
115 if ((ctx == NULL) || (next == NULL)) in enc_read()
153 i = BIO_read(next, ctx->read_start, ENC_BLOCK_SIZE); in enc_read()
162 if (!BIO_should_retry(next)) { in enc_read()
240 BIO *next; in enc_write() local
243 next = BIO_next(b); in enc_write()
244 if ((ctx == NULL) || (next == NULL)) in enc_write()
252 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in enc_write()
281 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in enc_write()
303 BIO *next; in enc_ctrl() local
307 next = BIO_next(b); in enc_ctrl()
318 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
324 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
329 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
334 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
366 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
374 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
393 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
401 BIO *next = BIO_next(b); in enc_callback_ctrl() local
403 if (next == NULL) in enc_callback_ctrl()
406 return BIO_callback_ctrl(next, cmd, fp); in enc_callback_ctrl()