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

  /external/webkit/WebCore/platform/android/
FileSystemAndroid.cpp 88 int totalBytesWritten = 0;
89 while (totalBytesWritten < length) {
90 int bytesWritten = write(handle, data, (size_t)(length - totalBytesWritten));
94 totalBytesWritten += bytesWritten;
97 return totalBytesWritten;
  /external/webkit/WebCore/platform/gtk/
FileSystemGtk.cpp 255 int totalBytesWritten = 0;
256 while (totalBytesWritten < length) {
257 int bytesWritten = write(handle, data, length - totalBytesWritten);
260 totalBytesWritten += bytesWritten;
263 return totalBytesWritten;

Completed in 15 milliseconds