Searched refs:totalBytesToBeSent (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
H A DWebURLLoaderClient.h51 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) { }
50 didSendData( WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
/external/webkit/Source/WebCore/loader/
H A DThreadableLoaderClientWrapper.h59 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
62 m_client->didSendData(bytesSent, totalBytesToBeSent);
H A DSubresourceLoader.h53 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
H A DResourceLoader.h84 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
105 virtual void didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
H A DWorkerThreadableLoader.cpp165 static void workerContextDidSendData(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
168 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent);
171 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
173 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeSent), m_taskMode);
H A DDocumentThreadableLoader.h76 virtual void didSendData(SubresourceLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
H A DWorkerThreadableLoader.h115 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
H A DSubresourceLoader.cpp116 void SubresourceLoader::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
121 m_client->didSendData(this, bytesSent, totalBytesToBeSent);
H A DResourceLoader.cpp422 void ResourceLoader::didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
424 didSendData(bytesSent, totalBytesToBeSent);
H A DDocumentThreadableLoader.cpp194 void DocumentThreadableLoader::didSendData(SubresourceLoader* loader, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
199 m_client->didSendData(bytesSent, totalBytesToBeSent);
/external/webkit/Source/WebKit/chromium/src/
H A DAssociatedURLLoader.cpp60 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/);
108 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
113 m_client->didSendData(m_loader, bytesSent, totalBytesToBeSent);
H A DResourceHandle.cpp73 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
144 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
147 m_client->didSendData(m_owner, bytesSent, totalBytesToBeSent);
143 didSendData( WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
/external/chromium/webkit/glue/media/
H A Dsimple_data_source.h67 unsigned long long totalBytesToBeSent);
H A Dbuffered_resource_loader.h126 unsigned long long totalBytesToBeSent);
H A Dsimple_data_source.cc166 unsigned long long totalBytesToBeSent) {
163 didSendData( WebKit::WebURLLoader* loader, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequest.h150 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
H A DXMLHttpRequest.cpp1009 void XMLHttpRequest::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
1015 m_upload->dispatchEvent(XMLHttpRequestProgressEvent::create(eventNames().progressEvent, true, bytesSent, totalBytesToBeSent));
1017 if (bytesSent == totalBytesToBeSent && !m_uploadComplete) {

Completed in 94 milliseconds