Home | History | Annotate | Download | only in browser

Lines Matching refs:bytes_read_

479           bytes_read_(0) {
528 size_t bytes_read_;
656 while (bytes_read_ < sizeof(buf_)) {
658 read(fd, buf_ + bytes_read_, sizeof(buf_) - bytes_read_));
673 bytes_read_ += rv;
679 if (bytes_read_ < kMinMessageLength) {
680 buf_[bytes_read_] = 0;
686 std::string str(buf_, bytes_read_);