Lines Matching refs:next
11 BIO *BIO_push(BIO *b, BIO *next);
13 void BIO_set_next(BIO *b, BIO *next);
17 BIO_push() pushes I<b> on I<next>.
18 If I<b> is NULL the function does nothing and returns I<next>.
20 to I<next> (unless I<next> is NULL).
26 returns the next BIO in the chain, or NULL if there is no next BIO.
30 BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to
31 by I<next>. The new chain may include some of the same BIOs from the old chain
47 which usually is I<b>, or I<next> if I<b> is NULL.
49 BIO_pop() returns the next BIO in the chain,
50 or NULL if there is no next BIO.