Lines Matching refs:chain
5 BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain
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,
23 it can thus be freed or attached to a different chain.
25 BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to
26 by B<next>. The new chain may include some of the same BIOs from the old chain
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.
41 BIO_push() returns the end of the chain, B<b>.
43 BIO_pop() returns the next BIO in the chain, or NULL if there is no next
55 is made then the new chain will be B<b64-f>. After making the calls
60 the new chain is B<md1-md2-b64-f>. Data written to B<md1> will be digested
69 The call will return B<b64> and the new chain will be B<md1-b64-f> data can