Lines Matching defs:readbytes
1853 int ssl_read_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
1887 *readbytes = s->asyncrw;
1890 return s->method->ssl_read(s, buf, num, readbytes);
1897 size_t readbytes;
1904 ret = ssl_read_internal(s, buf, (size_t)num, &readbytes);
1911 ret = (int)readbytes;
1916 int SSL_read_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
1918 int ret = ssl_read_internal(s, buf, num, readbytes);
1925 int SSL_read_early_data(SSL *s, void *buf, size_t num, size_t *readbytes)
1955 ret = SSL_read_ex(s, buf, num, readbytes);
1970 *readbytes = 0;
1984 static int ssl_peek_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
2005 *readbytes = s->asyncrw;
2008 return s->method->ssl_peek(s, buf, num, readbytes);
2015 size_t readbytes;
2022 ret = ssl_peek_internal(s, buf, (size_t)num, &readbytes);
2029 ret = (int)readbytes;
2035 int SSL_peek_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2037 int ret = ssl_peek_internal(s, buf, num, readbytes);