Home
last modified time | relevance | path

Searched refs:bytes_written (Results 1 – 1 of 1) sorted by relevance

/art/runtime/base/unix_file/
Dfd_file.cc215 ssize_t bytes_written = TEMP_FAILURE_RETRY(write(fd_, ptr, byte_count)); in WriteFully() local
216 if (bytes_written == -1) { in WriteFully()
219 byte_count -= bytes_written; // Reduce the number of remaining bytes. in WriteFully()
220 ptr += bytes_written; // Move the buffer forward. in WriteFully()