Home
last modified time | relevance | path

Searched refs:BIO_pop (Results 1 – 23 of 23) sorted by relevance

/third_party/openssl/doc/man3/
DBIO_push.pod5 BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain
12 BIO *BIO_pop(BIO *b);
23 BIO_pop() removes the BIO I<b> from any chain is is part of.
37 joins two BIO chains whereas BIO_pop() deletes a single BIO from a chain,
40 The process of calling BIO_push() and BIO_pop() on a BIO may have additional
49 BIO_pop() returns the next BIO in the chain,
75 BIO_pop(md2);
DBIO_s_accept.pod132 connection = BIO_pop(accept);
143 connections. This can be resolved by using BIO_pop() (see above)
201 cbio = BIO_pop(abio);
214 cbio2 = BIO_pop(abio);
DBIO_f_buffer.pod70 BIO using BIO_pop(). BIO_flush() may need to be retried if the ultimate
90 L<BIO_pop(3)>,
DBIO_new_CMS.pod31 removed from the chain using BIO_pop() and freed with BIO_free() until B<out>
DBIO_f_ssl.pod255 sbio = BIO_pop(acpt);
286 In OpenSSL before 1.0.0 the BIO_pop() call was handled incorrectly,
/third_party/openssl/demos/bio/
Dserver-cmod.c75 tmp = BIO_pop(in); in main()
Dsaccept.c105 tmp = BIO_pop(in); in main()
Dserver-arg.c128 tmp = BIO_pop(in); in main()
Dserver-conf.c120 tmp = BIO_pop(in); in main()
/third_party/openssl/crypto/asn1/
Dasn_mime.c82 tbio = BIO_pop(bio); in i2d_ASN1_bio_stream()
114 BIO_pop(out); in B64_write_ASN1()
145 BIO_pop(bio); in b64_read_asn1()
363 tmpbio = BIO_pop(sarg.ndef_bio); in asn1_output_data()
527 BIO_pop(out); in SMIME_crlf_copy()
Dbio_ndef.c123 (void)BIO_pop(pop_bio); in BIO_new_NDEF()
/third_party/openssl/apps/
Ds_client.c2228 BIO_pop(fbio); in s_client_main()
2267 BIO_pop(fbio); in s_client_main()
2288 BIO_pop(fbio); in s_client_main()
2388 BIO_pop(fbio); in s_client_main()
2410 BIO_pop(fbio); in s_client_main()
2470 BIO_pop(fbio); in s_client_main()
2594 BIO_pop(fbio); in s_client_main()
2633 BIO_pop(fbio); in s_client_main()
Docsp.c1378 cbio = BIO_pop(acbio); in do_responder()
/third_party/openssl/crypto/pkcs7/
Dpk7_smime.c365 BIO_pop(p7bio); in PKCS7_verify()
/third_party/openssl/crypto/bio/
Dbio_lib.c600 BIO *BIO_pop(BIO *b) in BIO_pop() function
/third_party/openssl/crypto/cms/
Dcms_smime.c93 tbio = BIO_pop(f); in do_free_upto()
/third_party/openssl/include/openssl/
Dbio.h571 BIO *BIO_pop(BIO *b);
/third_party/openssl/test/
Dssltest_old.c1967 server = BIO_pop(acpt); in doit_localhost()
Dsslapitest.c1842 BIO_pop(sslbio); in execute_test_ssl_bio()
1844 BIO_pop(membio1); in execute_test_ssl_bio()
/third_party/openssl/ssl/
Dssl_lib.c1254 s->wbio = BIO_pop(s->wbio); in SSL_set0_wbio()
4043 s->wbio = BIO_pop(s->wbio); in ssl_free_wbio_buffer()
/third_party/grpc/src/boringssl/
Dboringssl_prefix_symbols.h815 #define BIO_pop BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, BIO_pop) macro
/third_party/openssl/util/
Dlibcrypto.num3020 BIO_pop 2974 1_1_0 EXIST::FUNCTION:
/third_party/openssl/
DCHANGES4606 *) In BIO_pop() and BIO_push() use the ctrl argument (which was NULL) to
4609 of the ctrl being passed down the chain. Fix BIO_pop() and SSL BIOs so