Home | History | Annotate | Download | only in dist

Lines Matching defs:n_to_read

587 do_read(struct bufferevent_openssl *bev_ssl, int n_to_read) {
599 if (n_to_read > atmost)
600 n_to_read = atmost;
602 n = evbuffer_reserve_space(input, n_to_read, space, 2);
791 int n_to_read;
802 n_to_read = bytes_to_read(bev_ssl);
804 while (n_to_read) {
805 r = do_read(bev_ssl, n_to_read);
822 n_to_read = SSL_pending(bev_ssl->ssl);
838 if (!n_to_read && bev_ssl->underlying)
839 n_to_read = bytes_to_read(bev_ssl);