HomeSort by relevance Sort by last modified time
    Searched refs:SSL_pending (Results 1 - 12 of 12) sorted by null

  /external/libmicrohttpd/src/microhttpd/
connection_https.c 156 if ( (0 != SSL_pending (connection->tls_session)) &&
daemon.c     [all...]
  /external/libmicrohttpd/src/microspdy/
io_openssl.c 259 SSL_pending() takes into account only bytes from the TLS/SSL record that is currently being processed (if any). If the SSL object's read_ahead flag is set, additional protocol bytes may have been read containing more TLS/SSL records; these are ignored by SSL_pending().
261 return SSL_pending(session->io_context) > 0 ? SPDY_YES : SPDY_NO;
  /external/libvncserver/libvncserver/
rfbssl_openssl.c 125 return SSL_pending(ctx->ssl);
  /external/libbrillo/brillo/streams/
tls_stream.cc 253 if (is_read && SSL_pending(ssl_.get()) > 0) {
270 if (is_read && SSL_pending(ssl_.get()) > 0) {
  /external/curl/lib/
setup-vms.h 302 #define SSL_pending SSL_PENDING
  /external/curl/lib/vtls/
cyassl.c 727 return (0 != SSL_pending(conn->ssl[connindex].handle)) ? TRUE : FALSE;
openssl.c     [all...]
  /external/libevent/
bufferevent_openssl.c 800 n_to_read = SSL_pending(bev_ssl->ssl);
    [all...]
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 602 unsigned int pending = SSL_pending(ssl_);
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 311 /* SSL_pending returns the number of bytes available in |ssl|. It does not read
313 OPENSSL_EXPORT int SSL_pending(const SSL *ssl);
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.c     [all...]

Completed in 1436 milliseconds