Searched refs:totalBytesWritten (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/platform/android/
H A DFileSystemAndroid.cpp88 int totalBytesWritten = 0; local
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/
H A DFileSystemGtk.cpp255 int totalBytesWritten = 0; local
256 while (totalBytesWritten < length) {
257 int bytesWritten = write(handle, data, length - totalBytesWritten);
260 totalBytesWritten += bytesWritten;
263 return totalBytesWritten;
/external/webkit/WebCore/platform/network/mac/
H A DResourceHandleMac.mm763 - (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);
/external/webkit/WebCore/platform/network/cf/
H A DResourceHandleCFNet.cpp206 static void didSendBodyData(CFURLConnectionRef conn, CFIndex bytesWritten, CFIndex totalBytesWritten, CFIndex totalBytesExpectedToWrite, const void *clientInfo) argument
211 handle->client()->didSendData(handle, totalBytesWritten, totalBytesExpectedToWrite);

Completed in 138 milliseconds