HomeSort by relevance Sort by last modified time
    Searched refs:totalBytesWritten (Results 1 - 4 of 4) 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;
  /external/webkit/WebCore/platform/network/mac/
ResourceHandleMac.mm 763 - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
768 LOG(Network, "Handle %p delegate connection:%p didSendBodyData:%d totalBytesWritten:%d totalBytesExpectedToWrite:%d", m_handle, connection, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
773 m_handle->client()->didSendData(m_handle, totalBytesWritten, totalBytesExpectedToWrite);
    [all...]
  /external/webkit/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 206 static void didSendBodyData(CFURLConnectionRef conn, CFIndex bytesWritten, CFIndex totalBytesWritten, CFIndex totalBytesExpectedToWrite, const void *clientInfo)
211 handle->client()->didSendData(handle, totalBytesWritten, totalBytesExpectedToWrite);
    [all...]

Completed in 299 milliseconds