Home | History | Annotate | Download | only in spdy

Lines Matching refs:bytes_read

633 void SpdySession::OnReadComplete(int bytes_read) {
640 if (bytes_read <= 0) {
642 net::Error error = static_cast<net::Error>(bytes_read);
643 if (bytes_read == 0)
649 bytes_received_ += bytes_read;
660 while (bytes_read &&
662 uint32 bytes_processed = spdy_framer_.ProcessInput(data, bytes_read);
663 bytes_read -= bytes_processed;
734 int bytes_read = connection_->socket()->Read(read_buffer_.get(),
737 switch (bytes_read) {
754 &SpdySession::OnReadComplete, bytes_read));