Lines Matching refs:next
77 BIO *next; in md_read() local
83 next = BIO_next(b); in md_read()
85 if ((ctx == NULL) || (next == NULL)) in md_read()
88 ret = BIO_read(next, out, outl); in md_read()
105 BIO *next; in md_write() local
111 next = BIO_next(b); in md_write()
112 if ((ctx != NULL) && (next != NULL)) in md_write()
113 ret = BIO_write(next, in, inl); in md_write()
124 if (next != NULL) { in md_write()
137 BIO *dbio, *next; in md_ctrl() local
141 next = BIO_next(b); in md_ctrl()
150 ret = BIO_ctrl(next, cmd, num, ptr); in md_ctrl()
172 ret = BIO_ctrl(next, cmd, num, ptr); in md_ctrl()
190 ret = BIO_ctrl(next, cmd, num, ptr); in md_ctrl()
198 BIO *next; in md_callback_ctrl() local
200 next = BIO_next(b); in md_callback_ctrl()
202 if (next == NULL) in md_callback_ctrl()
205 return BIO_callback_ctrl(next, cmd, fp); in md_callback_ctrl()