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

  /external/google-breakpad/src/common/tests/
file_utils.cc 131 size_t bytes_written_total = 0; local
134 while (bytes_written_total < buffer_size) {
136 HANDLE_EINTR(write(fd, data + bytes_written_total,
137 buffer_size - bytes_written_total));
143 bytes_written_total += bytes_written_partial;
  /external/libchrome/base/files/
file_util_posix.cc 790 ssize_t bytes_written_total = 0; local
791 for (ssize_t bytes_written_partial = 0; bytes_written_total < size;
792 bytes_written_total += bytes_written_partial) {
794 HANDLE_EINTR(write(fd, data + bytes_written_total,
795 size - bytes_written_total));

Completed in 83 milliseconds