Lines Matching refs:next
113 BIO *next; in b64_read() local
119 next = BIO_next(b); in b64_read()
120 if ((ctx == NULL) || (next == NULL)) in b64_read()
161 i = BIO_read(next, &(ctx->tmp[ctx->tmp_len]), in b64_read()
168 if (!BIO_should_retry(next)) { in b64_read()
332 BIO *next; in b64_write() local
335 next = BIO_next(b); in b64_write()
336 if ((ctx == NULL) || (next == NULL)) in b64_write()
354 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in b64_write()
429 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in b64_write()
451 BIO *next; in b64_ctrl() local
454 next = BIO_next(b); in b64_ctrl()
455 if ((ctx == NULL) || (next == NULL)) in b64_ctrl()
463 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
469 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
478 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
484 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
512 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
517 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
527 ret = BIO_ctrl(next, cmd, num, ptr); in b64_ctrl()
535 BIO *next = BIO_next(b); in b64_callback_ctrl() local
537 if (next == NULL) in b64_callback_ctrl()
540 return BIO_callback_ctrl(next, cmd, fp); in b64_callback_ctrl()