Lines Matching refs:next
93 BIO *next = BIO_next(bio); in async_read() local
97 if (next == NULL) in async_read()
105 ret = BIO_read(next, out, 1); in async_read()
106 if (ret <= 0 && BIO_should_read(next)) in async_read()
129 BIO *next = BIO_next(bio); in async_write() local
133 if (next == NULL) in async_write()
222 ret = BIO_write(next, smallrec, MIN_RECORD_LEN); in async_write()
242 ret = BIO_write(next, in + written, inl - written); in async_write()
245 if (ret <= 0 && BIO_should_write(next)) in async_write()
260 BIO *next = BIO_next(bio); in async_ctrl() local
262 if (next == NULL) in async_ctrl()
270 ret = BIO_ctrl(next, cmd, num, ptr); in async_ctrl()