Lines Matching refs:BIO
11 BIO *BIO_push(BIO *b, BIO *append);
12 BIO *BIO_pop(BIO *b);
13 void BIO_set_next(BIO *b, BIO *next);
17 The BIO_push() function appends the BIO B<append> to B<b>, it returns
20 BIO_pop() removes the BIO B<b> from a chain and returns the next BIO
21 in the chain, or NULL if there is no next BIO. The removed BIO then
22 becomes a single BIO with no association with the original chain,
25 BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to
32 joins two BIO chains whereas BIO_pop() deletes a single BIO from a chain,
33 the deleted BIO does not need to be at the end of a chain.
35 The process of calling BIO_push() and BIO_pop() on a BIO may have additional
43 BIO_pop() returns the next BIO in the chain, or NULL if there is no next
44 BIO.
49 a base64 BIO and B<f> is a file BIO.