Lines Matching defs:bytes
205 << "/" << payload_size_str << " bytes downloaded"
305 LOG(INFO) << "Discarding " << buffer_.size() << " unused downloaded bytes";
517 // even before waiting for that many number of bytes to be downloaded in the
583 // Wrapper around write. Returns true if all requested bytes
586 bool DeltaPerformer::Write(const void* bytes, size_t count, ErrorCode *error) {
589 const char* c_bytes = reinterpret_cast<const char*>(bytes);
994 // Read in bytes.
999 const size_t bytes = extent.num_blocks() * block_size_;
1003 bytes,
1007 bytes_read_this_iteration == static_cast<ssize_t>(bytes));
1011 // Write bytes out.
1015 const size_t bytes = extent.num_blocks() * block_size_;
1019 bytes,
1021 bytes_written += bytes;
1115 // Read in bytes.
1123 // Write bytes out.
1378 // Convert base64-encoded signature to raw bytes.
1583 << " bytes at offset: " << operation.data_offset() << " = ";