Lines Matching refs:chain
5 BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain
19 Otherwise it prepends I<b>, which may be a single BIO or a chain of BIOs,
23 BIO_pop() removes the BIO I<b> from any chain is is part of.
26 returns the next BIO in the chain, or NULL if there is no next BIO.
28 the original chain, it can thus be freed or be made part of a different chain.
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
37 joins two BIO chains whereas BIO_pop() deletes a single BIO from a chain,
38 the deleted BIO does not need to be at the end of a chain.
46 BIO_push() returns the head of the chain,
49 BIO_pop() returns the next BIO in the chain,
61 is made then the new chain will be I<b64-f>. After making the calls
66 the new chain is I<md1-md2-b64-f>. Data written to I<md1> will be digested
77 will return I<b64> and the new chain will be I<md1-b64-f>.