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