/openssl/test/testutil/ |
H A D | basic_output.c | 34 tap_out = BIO_push(BIO_new(BIO_f_linebuffer()), tap_out); in test_open_streams() 35 tap_err = BIO_push(BIO_new(BIO_f_linebuffer()), tap_err); in test_open_streams() 37 tap_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out); in test_open_streams() 38 tap_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err); in test_open_streams() 40 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out); in test_open_streams() 41 bio_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err); in test_open_streams()
|
H A D | testutil_init.c | 80 channel = BIO_push(bio, in setup_trace_category()
|
/openssl/doc/man3/ |
H A D | BIO_push.pod | 5 BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain 11 BIO *BIO_push(BIO *b, BIO *next); 17 BIO_push() pushes I<b> on I<next>. 36 The names of these functions are perhaps a little misleading. BIO_push() 40 The process of calling BIO_push() and BIO_pop() on a BIO may have additional 46 BIO_push() returns the head of the chain, 59 BIO_push(b64, f); 63 BIO_push(md2, b64); 64 BIO_push(md1, md2);
|
H A D | BIO_f_md.pod | 87 * For BIO_push() we want to append the sink BIO and keep a note of 90 bio = BIO_push(mdtmp, bio); 93 bio = BIO_push(mdtmp, bio); 106 bio = BIO_push(mdtmp, bio); 109 bio = BIO_push(mdtmp, bio);
|
H A D | BIO_f_base64.pod | 78 BIO_push(b64, bio); 94 BIO_push(b64, bio);
|
/openssl/test/ |
H A D | bio_enc_test.c | 61 BIO_push(b, mem); in do_bio_cipher() 77 BIO_push(b, mem); in do_bio_cipher() 116 BIO_push(b, mem); in do_bio_cipher() 141 BIO_push(b, mem); in do_bio_cipher() 162 BIO_push(b, mem); in do_bio_cipher() 194 BIO_push(b, mem); in do_bio_cipher()
|
H A D | bio_prefix_text.c | 112 chain[i] = BIO_push(curr, next); in setup_bio_chain() 151 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out); in setup() 152 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err); in setup()
|
H A D | bio_comp_test.c | 53 BIO_push(bcomp, bmem); in do_bio_comp_test() 64 BIO_push(bexp, bmem); in do_bio_comp_test()
|
H A D | bio_readbuffer_test.c | 48 in_bio = BIO_push(readbuf_bio, in_bio); in test_readbuffer_file_bio()
|
/openssl/apps/ |
H A D | enc.c | 449 wbio = BIO_push(bzl, wbio); in enc_main() 451 rbio = BIO_push(bzl, rbio); in enc_main() 463 wbio = BIO_push(bbrot, wbio); in enc_main() 465 rbio = BIO_push(bbrot, rbio); in enc_main() 476 wbio = BIO_push(bzstd, wbio); in enc_main() 478 rbio = BIO_push(bzstd, rbio); in enc_main() 492 wbio = BIO_push(b64, wbio); in enc_main() 494 rbio = BIO_push(b64, rbio); in enc_main() 687 wbio = BIO_push(benc, wbio); in enc_main()
|
H A D | rand.c | 194 out = BIO_push(b64, out); in rand_main()
|
H A D | asn1parse.c | 206 BIO_push(b64, in); in asn1parse_main()
|
H A D | s_client.c | 2289 sbio = BIO_push(test, sbio); in s_client_main() 2369 BIO_push(fbio, sbio); in s_client_main() 2421 BIO_push(fbio, sbio); in s_client_main() 2452 BIO_push(fbio, sbio); in s_client_main() 2544 BIO_push(fbio, sbio); in s_client_main() 2708 BIO_push(fbio, sbio); in s_client_main() 2752 BIO_push(fbio, sbio); in s_client_main()
|
/openssl/demos/digest/ |
H A D | BIO_f_md.c | 96 reading = BIO_push(bio_digest, input); in main()
|
/openssl/ssl/ |
H A D | bio_ssl.c | 301 BIO_push(bio, next); in ssl_ctrl() 451 if ((ret = BIO_push(buf, ssl)) == NULL) in BIO_new_buffer_ssl_connect() 477 if ((ret = BIO_push(ssl, con)) == NULL) in BIO_new_ssl_connect()
|
/openssl/apps/lib/ |
H A D | log.c | 51 bio = BIO_push(pre, bio_err); in log_with_prefix()
|
/openssl/demos/bio/ |
H A D | sconnect.c | 81 out = BIO_push(ssl_bio, out); in main()
|
/openssl/test/helpers/ |
H A D | quictestlib.c | 214 cbio = BIO_push(pktsplitbio, cbio); in qtest_create_quic_objects() 219 sbio = BIO_push(pktsplitbio, sbio); in qtest_create_quic_objects() 236 cbio = BIO_push(noisebio, cbio); in qtest_create_quic_objects() 247 sbio = BIO_push(noisebio, sbio); in qtest_create_quic_objects() 288 if (!TEST_ptr(BIO_push(fisbio, sbio))) { in qtest_create_quic_objects()
|
/openssl/crypto/pkcs7/ |
H A D | pk7_doit.c | 133 else if (!BIO_push(*pbio, btmp)) { in pkcs7_bio_add_digest() 379 BIO_push(out, btmp); in PKCS7_dataInit() 409 BIO_push(out, bio); in PKCS7_dataInit() 579 BIO_push(out, btmp); in PKCS7_dataDecode() 685 BIO_push(out, etmp); in PKCS7_dataDecode() 702 BIO_push(out, bio); in PKCS7_dataDecode()
|
/openssl/crypto/asn1/ |
H A D | bio_ndef.c | 76 out = BIO_push(asn_bio, out); in BIO_new_NDEF()
|
H A D | asn_mime.c | 118 out = BIO_push(b64, out); in B64_write_ASN1() 148 bio = BIO_push(b64, bio); in b64_read_asn1() 536 out = BIO_push(bf, out); in SMIME_crlf_copy()
|
/openssl/crypto/bio/ |
H A D | bss_acpt.c | 324 if (!BIO_push(dbio, bio)) in acpt_state() 328 if (BIO_push(b, bio) == NULL) in acpt_state()
|
/openssl/doc/designs/ddd/ |
H A D | ddd-02-conn-nonblocking-threads.c | 94 BIO_push(out, buf); in new_conn()
|
H A D | ddd-02-conn-nonblocking.c | 107 BIO_push(out, buf); in new_conn()
|
/openssl/doc/man7/ |
H A D | bio.pod | 94 L<BIO_push(3)>, L<BIO_read_ex(3)>,
|