/third_party/openssl/doc/man3/ |
D | SSL_pending.pod | 5 SSL_pending, SSL_has_pending - check for readable bytes buffered in an 12 int SSL_pending(const SSL *ssl); 21 SSL_pending() returns the number of bytes which have been processed, buffered 29 they are needed. As these bytes are still in an unprocessed state SSL_pending() 31 the underlying BIO (because OpenSSL has already read them) and for SSL_pending() 47 SSL_pending() returns the number of buffered and processed application data
|
D | SSL_CTX_set_read_ahead.pod | 41 B<read_ahead> can impact the behaviour of the SSL_pending() function 42 (see L<SSL_pending(3)>). 63 L<ssl(7)>, L<SSL_pending(3)>
|
D | SSL_CTX_set_split_send_fragment.pod | 98 connection. Setting B<read_ahead> can impact the behaviour of the SSL_pending() 99 function (see L<SSL_pending(3)>). 167 L<SSL_CTX_set_read_ahead(3)>, L<SSL_pending(3)>
|
D | SSL_read.pod | 91 L<SSL_pending(3)> can be used to find out whether there 135 L<SSL_pending(3)>,
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | mbedtls-ssl.c | 139 if (SSL_pending(wsi->tls.ssl)) { in lws_ssl_capable_read() 159 return SSL_pending(wsi->tls.ssl); in lws_ssl_pending()
|
/third_party/nghttp2/src/ |
D | shrpx_rate_limit.cc | 112 (SSL_pending(conn_->tls.ssl) == 0 && conn_->tls.rbuf.rleft() == 0 && in handle_tls_pending_read()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
D | io_openssl.c | 261 return SSL_pending(session->io_context) > 0 ? SPDY_YES : SPDY_NO; in SPDYF_openssl_is_pending()
|
/third_party/libwebsockets/lib/tls/openssl/ |
D | openssl-ssl.c | 314 if (SSL_pending(wsi->tls.ssl)) { in lws_ssl_capable_read() 334 return SSL_pending(wsi->tls.ssl); in lws_ssl_pending()
|
D | openssl-server.c | 716 if (SSL_pending(wsi->tls.ssl) &&
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/ |
D | ssl_lib.c | 622 int SSL_pending(const SSL *ssl) in SSL_pending() function 642 if (SSL_pending(ssl)) in SSL_has_pending()
|
/third_party/curl/lib/ |
D | setup-vms.h | 303 #define SSL_pending SSL_PENDING macro
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
D | ssl.h | 481 int SSL_pending(const SSL *ssl);
|
/third_party/openssl/ssl/ |
D | bio_ssl.c | 317 ret = SSL_pending(ssl); in ssl_ctrl()
|
D | ssl_lib.c | 1492 int SSL_pending(const SSL *s) in SSL_pending() function
|
/third_party/curl/lib/vtls/ |
D | wolfssl.c | 899 return (0 != SSL_pending(backend->handle)) ? TRUE : FALSE; in wolfssl_data_pending()
|
D | openssl.c | 4177 if(connssl->backend->handle && SSL_pending(connssl->backend->handle)) in ossl_data_pending() 4182 if(proxyssl->backend->handle && SSL_pending(proxyssl->backend->handle)) in ossl_data_pending()
|
/third_party/openssl/doc/man7/ |
D | ssl.pod | 619 =item int B<SSL_pending>(const SSL *ssl); 803 L<SSL_pending(3)>,
|
/third_party/openssl/util/ |
D | libssl.num | 281 SSL_pending 282 1_1_0 EXIST::FUNCTION:
|
/third_party/openssl/test/ |
D | sslapitest.c | 5526 if (!TEST_int_eq(SSL_pending(clientssl), 0) in test_ssl_pending() 5528 || !TEST_int_eq(SSL_pending(serverssl), 0) in test_ssl_pending() 5534 || !TEST_int_eq(SSL_pending(clientssl), (int)(written - readbytes)) in test_ssl_pending()
|
/third_party/openssl/include/openssl/ |
D | ssl.h | 1536 __owur int SSL_pending(const SSL *s);
|
/third_party/grpc/src/boringssl/ |
D | boringssl_prefix_symbols.h | 408 #define SSL_pending BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, SSL_pending) macro
|
/third_party/python/Modules/ |
D | _ssl.c | 2408 count = SSL_pending(self->ssl); in _ssl__SSLSocket_pending_impl()
|
/third_party/openssl/ |
D | CHANGES | 52 *) Fixed SSL_pending() and SSL_has_pending() with DTLS which were failing to 9626 *) Fix ssl3_pending() (ssl/s3_lib.c) to prevent SSL_pending() from 12953 it should have checked SSL_pending() first.
|