Lines Matching defs:next
73 BIO *next = BIO_next(bio);
77 if (next == NULL)
82 ret = BIO_read(next, out, outl);
83 if (ret <= 0 && BIO_should_read(next))
92 BIO *next = BIO_next(bio);
98 if (next == NULL)
206 ret = BIO_write(next, in, inl);
207 if (ret <= 0 && BIO_should_write(next))
216 BIO *next = BIO_next(bio);
218 if (next == NULL)
226 ret = BIO_ctrl(next, cmd, num, ptr);