Lines Matching refs:n_to_read
566 do_read(struct bufferevent_openssl *bev_ssl, int n_to_read) {
578 if (n_to_read > atmost)
579 n_to_read = atmost;
581 n = evbuffer_reserve_space(input, n_to_read, space, 2);
769 int n_to_read;
780 n_to_read = bytes_to_read(bev_ssl);
782 while (n_to_read) {
783 r = do_read(bev_ssl, n_to_read);
800 n_to_read = SSL_pending(bev_ssl->ssl);
816 if (!n_to_read && bev_ssl->underlying)
817 n_to_read = bytes_to_read(bev_ssl);