| /src/crypto/openssl/doc/man3/ |
| H A D | BIO_f_buffer.pod | 10 BIO_f_buffer 17 const BIO_METHOD *BIO_f_buffer(void); 27 BIO_f_buffer() returns the buffering BIO method. 50 These functions, other than BIO_f_buffer(), are implemented as macros. 63 Do not add more than one BIO_f_buffer() to a BIO chain. The result of 65 the top BIO_f_buffer(), which is 4 KiB at a minimum. 75 BIO_f_buffer() returns the buffering BIO method.
|
| H A D | BIO_new_CMS.pod | 45 a BIO_f_buffer() buffering BIO will prevent this.
|
| H A D | BIO_read.pod | 104 supported by adding a buffering BIO L<BIO_f_buffer(3)> to the chain.
|
| H A D | BIO_f_ssl.pod | 237 bbio = BIO_new(BIO_f_buffer());
|
| /src/crypto/openssl/doc/designs/ddd/ |
| H A D | ddd-02-conn-nonblocking-threads.c | 87 buf = BIO_new(BIO_f_buffer()); in new_conn()
|
| H A D | REPORT.md | 66 It also arbitrarily adds a `BIO_f_buffer` pushed onto the BIO stack 75 - Use of a `BIO_f_dgram_buffer` BIO method instead of a `BIO_f_buffer`; 125 - The need to change code which pushes a `BIO_f_buffer()` after an SSL BIO
|
| H A D | ddd-02-conn-nonblocking.c | 100 buf = BIO_new(BIO_f_buffer()); in new_conn()
|
| /src/crypto/openssl/doc/man7/ |
| H A D | bio.pod | 86 L<BIO_f_base64(3)>, L<BIO_f_buffer(3)>,
|
| H A D | openssl-quic.pod | 367 L<BIO_f_buffer(3)>, for example using L<BIO_push(3)>. 369 Changes needed: Disable the usage of L<BIO_f_buffer(3)> when using QUIC. Usage
|
| /src/crypto/openssl/apps/ |
| H A D | s_client.c | 2451 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() 2499 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() 2527 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() 2610 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() 2767 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() 2809 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main()
|
| H A D | s_server.c | 3282 io = BIO_new(BIO_f_buffer()); in www_body() 3749 io = BIO_new(BIO_f_buffer()); in rev_body()
|
| /src/crypto/openssl/apps/lib/ |
| H A D | http_server.c | 202 bufbio = BIO_new(BIO_f_buffer()); in http_server_init()
|
| H A D | apps.c | 248 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
|
| /src/crypto/openssl/crypto/bio/ |
| H A D | bf_buff.c | 40 const BIO_METHOD *BIO_f_buffer(void) in BIO_f_buffer() function
|
| /src/crypto/openssl/include/openssl/ |
| H A D | bio.h.in | 107 #define BIO_CTRL_PEEK 29 /* BIO_f_buffer special */ 599 /* For the BIO_f_buffer() type */ 623 /* For the BIO_f_buffer() type */ 771 const BIO_METHOD *BIO_f_buffer(void);
|
| H A D | bio.h | 794 const BIO_METHOD *BIO_f_buffer(void);
|
| /src/crypto/openssl/ssl/ |
| H A D | bio_ssl.c | 454 if ((buf = BIO_new(BIO_f_buffer())) == NULL) in BIO_new_buffer_ssl_connect()
|
| /src/crypto/openssl/crypto/pkcs7/ |
| H A D | pk7_smime.c | 503 if ((tmpbuf = BIO_new(BIO_f_buffer())) == NULL) { in PKCS7_decrypt()
|
| /src/crypto/openssl/crypto/asn1/ |
| H A D | asn_mime.c | 540 bf = BIO_new(BIO_f_buffer()); in SMIME_crlf_copy()
|
| /src/crypto/openssl/doc/designs/quic-design/ |
| H A D | quic-api.md | 65 - [Interactions with `BIO_f_buffer`](#interactions-with--bio-f-buffer-) 1198 #### Interactions with `BIO_f_buffer` 1201 `BIO_f_buffer`. This is problematic because the datagram semantics of writes are 1210 - Require applications to be changed to not use QUIC with a `BIO_f_buffer`. 1211 - Detect when a `BIO_f_buffer` is part of a BIO stack and bypass it
|
| /src/crypto/openssl/engines/ |
| H A D | e_loader_attic.c | 935 if ((buff = BIO_new(BIO_f_buffer())) == NULL) in file_find_type()
|
| /src/crypto/openssl/crypto/http/ |
| H A D | http_client.c | 1437 BIO *fbio = BIO_new(BIO_f_buffer()); in OSSL_HTTP_proxy_connect()
|
| /src/secure/lib/libcrypto/man/man3/ |
| H A D | Makefile | 26 MAN+= BIO_f_buffer.3 879 MLINKS+= BIO_f_buffer.3 BIO_get_buffer_num_lines.3 880 MLINKS+= BIO_f_buffer.3 BIO_set_buffer_read_data.3 881 MLINKS+= BIO_f_buffer.3 BIO_set_buffer_size.3 882 MLINKS+= BIO_f_buffer.3 BIO_set_read_buffer_size.3 883 MLINKS+= BIO_f_buffer.3 BIO_set_write_buffer_size.3
|
| /src/crypto/openssl/doc/ |
| H A D | build.info | 578 DEPEND[html/man3/BIO_f_buffer.html]=man3/BIO_f_buffer.pod 579 GENERATE[html/man3/BIO_f_buffer.html]=man3/BIO_f_buffer.pod 580 DEPEND[man/man3/BIO_f_buffer.3]=man3/BIO_f_buffer.pod 581 GENERATE[man/man3/BIO_f_buffer.3]=man3/BIO_f_buffer.pod 3208 html/man3/BIO_f_buffer.html \ 3884 man/man3/BIO_f_buffer.3 \
|
| /src/secure/lib/libcrypto/ |
| H A D | Version.map | 289 BIO_f_buffer;
|