Lines Matching refs:next
119 BIO *next; in b64_read() local
125 next = BIO_next(b); in b64_read()
126 if (ctx == NULL || next == NULL) in b64_read()
170 i = BIO_read(next, &(ctx->tmp[ctx->tmp_len]), in b64_read()
177 if (!BIO_should_retry(next)) { in b64_read()
323 BIO *next; in b64_write() local
326 next = BIO_next(b); in b64_write()
327 if (ctx == NULL || next == NULL) in b64_write()
345 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in b64_write()
417 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in b64_write()
439 BIO *next; in b64_ctrl() local
442 next = BIO_next(b); in b64_ctrl()
443 if (ctx == NULL || next == NULL) in b64_ctrl()
451 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
457 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
466 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
472 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
498 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
504 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
514 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
522 BIO *next = BIO_next(b); in b64_callback_ctrl() local
524 if (next == NULL) in b64_callback_ctrl()
527 return BIO_callback_ctrl(next, cmd, fp); in b64_callback_ctrl()