Lines Matching defs:bytes
190 VLOG(2) << "SSLWrite(" << chunksize << " bytes): " << rv;
406 char* bytes;
413 read_buffer_.GetWritablePtr(&bytes, &size);
416 bytes_read = SSL_read(ssl_, bytes, size);
434 bytes_read = recv(fd_, bytes, size, MSG_DONTWAIT);
456 << " bytes";
472 << "0 bytes read with recv call.";
489 char* bytes;
491 read_buffer_.GetReadablePtr(&bytes, &size);
493 size_t bytes_consumed = sm_interface_->ProcessReadInput(bytes, size);
495 << bytes_consumed << " bytes";
513 read_buffer_.GetReadablePtr(&bytes, &size);
544 << " byte sent >= max bytes sent per write: Setting EPOLLOUT: "
553 const char* bytes = data_frame->data;
555 bytes += data_frame->index;
572 VLOG(2) << log_prefix_ << "Attempting to send " << size << " bytes.";
573 ssize_t bytes_written = Send(bytes, size, flags);
594 << bytes_written << " bytes";
604 << "0 bytes written with send call.";