/third_party/openssl/doc/man3/ |
D | BIO_s_fd.pod | 23 BIO_read_ex() and BIO_write_ex() read or write the underlying descriptor. 48 The behaviour of BIO_read_ex() and BIO_write_ex() depends on the behavior of the 51 manner described in the L<BIO_read_ex(3)> and L<BIO_should_retry(3)> 84 L<BIO_reset(3)>, L<BIO_read_ex(3)>,
|
D | BIO_f_readbuffer.pod | 31 Read buffering BIOs implement BIO_read_ex() by using BIO_read_ex() operations 34 for the call. BIO_read_ex() is guaranteed to give the caller the number of bytes
|
D | BIO_f_buffer.pod | 52 Buffering BIOs implement BIO_read_ex() and BIO_gets() by using 53 BIO_read_ex() operations on the next BIO in the chain and storing the 56 the caller a whole line, and BIO_read_ex() is guaranteed to give the 60 BIO_gets() or exact size BIO_read_ex() functionality if the following
|
D | BIO_read.pod | 5 BIO_read_ex, BIO_write_ex, BIO_read, BIO_write, 13 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes); 24 BIO_read_ex() attempts to read I<dlen> bytes from BIO I<b> and places the data 59 BIO_read_ex() returns 1 if data was successfully read, and 0 otherwise.
|
D | BIO_s_bio.pod | 46 Calls to BIO_read_ex() will read data from the buffer or request a retry if no 113 BIO_write_ex() and a response read with BIO_read_ex(), this can occur during an 115 write buffer. BIO_read_ex() will initially fail and BIO_should_read() will be 190 L<BIO_should_retry(3)>, L<BIO_read_ex(3)>
|
D | BIO_meth_new.pod | 92 be called in response to the application calling BIO_read_ex() or BIO_read(). 93 The parameters for the function have the same meaning as for BIO_read_ex(). 152 L<bio(7)>, L<BIO_find_type(3)>, L<BIO_ctrl(3)>, L<BIO_read_ex(3)>, L<BIO_new(3)>
|
D | BIO_s_file.pod | 31 Calls to BIO_read_ex() and BIO_write_ex() read and write data to the 153 L<BIO_read_ex(3)>,
|
D | BIO_s_socket.pod | 20 BIO_read_ex() and BIO_write_ex() read or write the underlying socket.
|
D | BIO_should_retry.pod | 27 They will typically be called after a failed BIO_read_ex() or BIO_write_ex() 70 operation. For example if a call to BIO_read_ex() on a socket BIO returns
|
D | BIO_f_md.pod | 26 Any data written or read through a digest BIO using BIO_read_ex() and
|
D | BIO_set_callback.pod | 124 =item B<BIO_read_ex(b, data, dlen, readbytes)>
|
D | BIO_f_ssl.pod | 113 renegotiation takes place during a BIO_read_ex() operation, one
|
/third_party/openssl/test/ |
D | bio_readbuffer_test.c | 36 || !TEST_int_eq(BIO_read_ex(in, expected, sizeof(expected), in test_readbuffer_file_bio() 82 if (!TEST_int_eq(BIO_read_ex(in_bio, buf, len, &bytes), 1)) in test_readbuffer_file_bio()
|
D | bio_core_test.c | 22 return BIO_read_ex(bio->bio, data, data_len, bytes_read); in tst_bio_core_read_ex()
|
D | bio_prefix_text.c | 80 if (!BIO_read_ex(bio_in, buf, sizeof(buf), &bytes_in)) in run_pipe()
|
D | evp_pkey_provided_test.c | 105 if (!TEST_true(BIO_read_ex(file, buf, sizeof(buf), &readbytes)) in compare_with_file()
|
/third_party/openssl/crypto/bio/ |
D | ossl_core_bio.c | 97 return BIO_read_ex(cb->bio, data, dlen, readbytes); in ossl_core_bio_read_ex()
|
D | bf_prefix.c | 78 return BIO_read_ex(BIO_next(b), in, size, numread); in prefix_read()
|
D | bio_lib.c | 328 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes) in BIO_read_ex() function
|
/third_party/openssl/doc/man7/ |
D | bio.pod | 70 L<BIO_push(3)>, L<BIO_read_ex(3)>,
|
D | provider-base.pod | 64 int BIO_read_ex(OSSL_CORE_BIO *bio, void *data, size_t data_len, 162 BIO_read_ex OSSL_FUNC_BIO_READ_EX 289 BIO_new_file(), BIO_new_mem_buf(), BIO_read_ex(), BIO_write_ex(), BIO_up_ref(),
|
/third_party/openssl/include/openssl/ |
D | core_dispatch.h | 164 OSSL_CORE_MAKE_FUNC(int, BIO_read_ex, (OSSL_CORE_BIO *bio, void *data,
|
D | bio.h.in | 619 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | bio.h | 560 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
|
/third_party/openssl/apps/ |
D | s_client.c | 2700 if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes)) in s_client_main()
|