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

  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_lib.c 819 int SSL_pending(const SSL *s)
821 /* SSL_pending cannot work properly if read-ahead is enabled
823 * and it is impossible to fix since SSL_pending cannot report
825 * (Note that SSL_pending() is often used as a boolean value,
828 return(s->method->ssl_pending(s));
    [all...]
  /external/openssl/ssl/
ssl_lib.c 832 int SSL_pending(const SSL *s)
834 /* SSL_pending cannot work properly if read-ahead is enabled
836 * and it is impossible to fix since SSL_pending cannot report
838 * (Note that SSL_pending() is often used as a boolean value,
841 return(s->method->ssl_pending(s));
    [all...]

Completed in 468 milliseconds