Lines Matching refs:next
174 BIO *next; in ok_read() local
180 next = BIO_next(b); in ok_read()
182 if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0)) in ok_read()
222 i = BIO_read(next, &(ctx->buf[ctx->buf_len]), n); in ok_read()
260 BIO *next; in ok_write() local
266 next = BIO_next(b); in ok_write()
269 if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0)) in ok_write()
279 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in ok_write()
328 BIO *next; in ok_ctrl() local
331 next = BIO_next(b); in ok_ctrl()
343 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
349 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
355 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
376 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
380 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
400 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
408 BIO *next; in ok_callback_ctrl() local
410 next = BIO_next(b); in ok_callback_ctrl()
412 if (next == NULL) in ok_callback_ctrl()
415 return BIO_callback_ctrl(next, cmd, fp); in ok_callback_ctrl()