Lines Matching refs:next
172 BIO *next; in ok_read() local
178 next = BIO_next(b); in ok_read()
180 if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0)) in ok_read()
220 i = BIO_read(next, &(ctx->buf[ctx->buf_len]), n); in ok_read()
258 BIO *next; in ok_write() local
264 next = BIO_next(b); in ok_write()
267 if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0)) in ok_write()
277 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n); in ok_write()
326 BIO *next; in ok_ctrl() local
329 next = BIO_next(b); in ok_ctrl()
341 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
347 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
353 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
374 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
379 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
399 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl()
407 BIO *next; in ok_callback_ctrl() local
409 next = BIO_next(b); in ok_callback_ctrl()
411 if (next == NULL) in ok_callback_ctrl()
414 return BIO_callback_ctrl(next, cmd, fp); in ok_callback_ctrl()