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