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

/macosx-10.10/WebCore-7600.1.25/loader/
H A DThreadableLoaderClientWrapper.h59 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
62 m_client->didSendData(bytesSent, totalBytesToBeSent);
H A DWorkerThreadableLoader.cpp161 static void workerGlobalScopeDidSendData(ScriptExecutionContext& context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
164 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent);
167 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
169 m_loaderProxy.postTaskForModeToWorkerGlobalScope(CrossThreadTask(&workerGlobalScopeDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeSent), m_taskMode);
H A DDocumentThreadableLoader.h81 virtual void dataSent(CachedResource*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DSubresourceLoader.h68 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DWorkerThreadableLoader.h113 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DResourceLoader.h97 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
170 virtual void didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DSubresourceLoader.cpp182 void SubresourceLoader::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
186 m_resource->didSendData(bytesSent, totalBytesToBeSent);
H A DDocumentThreadableLoader.cpp225 void DocumentThreadableLoader::dataSent(CachedResource* resource, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
229 m_client->didSendData(bytesSent, totalBytesToBeSent);
H A DResourceLoader.cpp489 void ResourceLoader::didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
491 didSendData(bytesSent, totalBytesToBeSent);
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/
H A DAsynchronousNetworkLoaderClient.h47 virtual void didSendData(NetworkResourceLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DNetworkLoaderClient.h55 virtual void didSendData(NetworkResourceLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) = 0;
H A DAsynchronousNetworkLoaderClient.cpp82 void AsynchronousNetworkLoaderClient::didSendData(NetworkResourceLoader* loader, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
84 loader->send(Messages::WebResourceLoader::DidSendData(bytesSent, totalBytesToBeSent));
H A DNetworkResourceLoader.cpp294 void NetworkResourceLoader::didSendData(ResourceHandle* handle, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
298 m_networkLoaderClient->didSendData(this, bytesSent, totalBytesToBeSent);
H A DNetworkResourceLoader.h89 virtual void didSendData(WebCore::ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedRawResource.h60 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DCachedRawResource.cpp176 void CachedRawResource::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
180 c->dataSent(this, bytesSent, totalBytesToBeSent);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Network/
H A DWebResourceLoader.h82 void didSendData(uint64_t bytesSent, uint64_t totalBytesToBeSent);
H A DWebResourceLoader.cpp100 void WebResourceLoader::didSendData(uint64_t bytesSent, uint64_t totalBytesToBeSent) argument
102 m_coreLoader->didSendData(bytesSent, totalBytesToBeSent);
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequest.h180 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
H A DXMLHttpRequest.cpp1110 void XMLHttpRequest::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) argument
1116 m_upload->dispatchThrottledProgressEvent(true, bytesSent, totalBytesToBeSent);
1117 if (bytesSent == totalBytesToBeSent && !m_uploadComplete) {

Completed in 127 milliseconds