Lines Matching refs:next
110 BIO *next; in enc_read() local
116 next = BIO_next(b); in enc_read()
117 if ((ctx == NULL) || (next == NULL)) in enc_read()
151 i = BIO_read(next, ctx->read_start, ENC_BLOCK_SIZE); in enc_read()
160 if (!BIO_should_retry(next)) { in enc_read()
238 BIO *next; in enc_write() local
241 next = BIO_next(b); in enc_write()
242 if ((ctx == NULL) || (next == NULL)) in enc_write()
250 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in enc_write()
279 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in enc_write()
301 BIO *next; in enc_ctrl() local
304 next = BIO_next(b); in enc_ctrl()
315 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
321 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
326 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
331 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
357 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
364 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
383 ret = BIO_ctrl(next, cmd, num, ptr); in enc_ctrl()
391 BIO *next = BIO_next(b); in enc_callback_ctrl() local
393 if (next == NULL) in enc_callback_ctrl()
396 return BIO_callback_ctrl(next, cmd, fp); in enc_callback_ctrl()