HomeSort by relevance Sort by last modified time
    Searched refs:total_bytes_wrote (Results 1 - 3 of 3) sorted by null

  /system/update_engine/payload_consumer/
cached_file_descriptor.cc 53 size_t total_bytes_wrote = 0; local
54 while (total_bytes_wrote < count) {
56 std::min(count - total_bytes_wrote, cache_.size() - bytes_cached_);
59 bytes + total_bytes_wrote,
61 total_bytes_wrote += bytes_to_cache;
71 offset_ += total_bytes_wrote;
72 return total_bytes_wrote;
cached_file_descriptor_unittest.cc 51 size_t total_bytes_wrote = 0; local
52 while (total_bytes_wrote < count) {
54 cfd_->Write(buffer + total_bytes_wrote, count - total_bytes_wrote);
56 total_bytes_wrote += bytes_wrote;
  /external/puffin/src/
file_stream.cc 76 size_t total_bytes_wrote = 0; local
77 while (total_bytes_wrote < length) {
79 write(fd_, c_bytes + total_bytes_wrote, length - total_bytes_wrote);
81 total_bytes_wrote += bytes_wrote;

Completed in 82 milliseconds