/third_party/openssl/doc/man3/ |
D | BIO_read.pod | 5 BIO_read_ex, BIO_write_ex, BIO_read, BIO_write, BIO_gets, BIO_puts 16 int BIO_gets(BIO *b, char *buf, int size); 32 BIO_gets() performs the BIOs "gets" operation and places the data 35 however; for example, BIO_gets() on a digest BIO will calculate and 36 return the digest and other BIOs may not support BIO_gets() at all. 53 NUL is not included in the length returned by BIO_gets(). 75 If the BIO_gets() function is not supported by a BIO then it possible to 85 BIO_gets() on 1.1.0 and older when called on BIO_fd() based BIO does not
|
D | BIO_f_md.pod | 29 BIO_gets(), if its B<size> parameter is large enough finishes the 59 If an application needs to call BIO_gets() or BIO_puts() through 132 mdlen = BIO_gets(mdtmp, mdbuf, EVP_MAX_MD_SIZE); 143 BIO_gets() could be regarded as anomalous. It could be argued that BIO_gets()
|
D | BIO_f_buffer.pod | 32 Both BIO_gets() and BIO_puts() are supported. 52 Buffering BIOs implement BIO_read_ex() and BIO_gets() by using 55 caller as appropriate for the call; a BIO_gets() is guaranteed to give 60 BIO_gets() or exact size BIO_read_ex() functionality if the following
|
D | BIO_s_fd.pod | 24 BIO_puts() is supported but BIO_gets() is not. 86 L<BIO_gets(3)>, L<BIO_printf(3)>,
|
D | BIO_f_cipher.pod | 27 Cipher BIOs do not support BIO_gets() or BIO_puts(). 58 As always, if BIO_gets() or BIO_puts() support is needed then it can
|
D | BIO_meth_new.pod | 105 used for reading a line of data from the BIO respectively (see the L<BIO_gets(3)> 107 application calling BIO_gets(). The parameters for the function have the same 108 meaning as for BIO_gets().
|
D | BIO_s_file.pod | 32 underlying stream. BIO_gets() and BIO_puts() are supported on file BIOs. 156 L<BIO_gets(3)>, L<BIO_printf(3)>,
|
D | BIO_s_socket.pod | 21 BIO_puts() is supported but BIO_gets() is not.
|
D | BIO_f_base64.pod | 22 Base64 BIOs do not support BIO_gets() or BIO_puts().
|
D | BIO_f_ssl.pod | 201 BIO to allow lines to be read from the SSL BIO using BIO_gets. 269 len = BIO_gets(sbio, tmpbuf, 1024);
|
/third_party/openssl/test/testutil/ |
D | stanza.c | 53 while (BIO_gets(s->fp, tmpbuf, sizeof(tmpbuf))) { in read_key() 91 for (s->numpairs = 0; BIO_gets(s->fp, s->buff, sizeof(s->buff)); ) { in test_readstanza()
|
D | tap_bio.c | 144 return BIO_gets(BIO_next(b), buf, size); in tap_gets()
|
/third_party/openssl/crypto/asn1/ |
D | f_string.c | 55 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_STRING() 124 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_STRING()
|
D | f_int.c | 63 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_INTEGER() 132 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_INTEGER()
|
D | asn_mime.c | 507 while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) { in SMIME_crlf_copy() 586 while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) { in multi_split() 644 while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) { in STACK_OF()
|
/third_party/openssl/test/ |
D | cmsapitest.c | 38 if (!TEST_int_eq(BIO_gets(outmsgbio, buf, sizeof(buf)), strlen(msg)) in test_encrypt_decrypt()
|
D | danetest.c | 158 if (!BIO_gets(f, buf, sizeof(buf))) in read_to_eol()
|
/third_party/openssl/crypto/bio/ |
D | bf_null.c | 114 return BIO_gets(bp->next_bio, buf, size); in nullf_gets()
|
D | bf_nbio.c | 192 return BIO_gets(bp->next_bio, buf, size); in nbiof_gets()
|
D | bf_lbuf.c | 320 return BIO_gets(b->next_bio, buf, size); in linebuffer_gets()
|
/third_party/openssl/apps/ |
D | s_client.c | 2209 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2223 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2255 BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2261 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2284 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2382 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2406 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2452 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2583 BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() 2589 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main() [all …]
|
D | bf_prefix.c | 171 return BIO_gets(BIO_next(b), buf, size); in prefix_gets()
|
D | passwd.c | 269 int r = BIO_gets(in, passwd, pw_maxlen + 1); in passwd_main() 278 r = BIO_gets(in, trash, sizeof(trash)); in passwd_main()
|
/third_party/openssl/crypto/ocsp/ |
D | ocsp_ht.c | 366 n = BIO_gets(rctx->mem, (char *)rctx->iobuf, rctx->iobuflen); in OCSP_REQ_CTX_nbio()
|
/third_party/openssl/crypto/txt_db/ |
D | txt_db.c | 63 BIO_gets(in, &(buf->data[offset]), size - offset); in TXT_DB_read()
|