HomeSort by relevance Sort by last modified time
    Searched refs:didSendData (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebKit/chromium/public/
WebSocketStreamHandleClient.h 50 virtual void didSendData(WebSocketStreamHandle*, int /* amountSent */) = 0;
WebURLLoaderClient.h 50 virtual void didSendData(
  /external/webkit/Source/WebCore/loader/
ThreadableLoaderClient.h 43 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { }
SubresourceLoaderClient.h 46 virtual void didSendData(SubresourceLoader*, unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { }
ThreadableLoaderClientWrapper.h 59 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
62 m_client->didSendData(bytesSent, totalBytesToBeSent);
SubresourceLoader.h 53 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
ResourceLoader.h 84 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
105 virtual void didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
DocumentThreadableLoader.h 76 virtual void didSendData(SubresourceLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
WorkerThreadableLoader.h 115 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
ResourceLoader.cpp 255 void ResourceLoader::didSendData(unsigned long long, unsigned long long)
422 void ResourceLoader::didSendData(ResourceHandle*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
424 didSendData(bytesSent, totalBytesToBeSent);
SubresourceLoader.cpp 116 void SubresourceLoader::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
121 m_client->didSendData(this, bytesSent, totalBytesToBeSent);
WorkerThreadableLoader.cpp 168 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent);
171 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
DocumentThreadableLoader.cpp 194 void DocumentThreadableLoader::didSendData(SubresourceLoader* loader, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
199 m_client->didSendData(bytesSent, totalBytesToBeSent);
  /external/webkit/Source/WebKit/chromium/src/
AssociatedURLLoader.cpp 60 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/);
108 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
113 m_client->didSendData(m_loader, bytesSent, totalBytesToBeSent);
SocketStreamHandle.cpp 64 virtual void didSendData(WebSocketStreamHandle*, int);
140 void SocketStreamHandleInternal::didSendData(WebSocketStreamHandle* socketHandle, int amountSent)
142 LOG(Network, "SocketStreamHandleInternal::didSendData %d", amountSent);
ResourceHandle.cpp 72 virtual void didSendData(
143 void ResourceHandleInternal::didSendData(
147 m_client->didSendData(m_owner, bytesSent, totalBytesToBeSent);
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleClient.h 71 virtual void didSendData(ResourceHandle*, unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { }
  /external/chromium/webkit/glue/media/
simple_data_source.h 64 virtual void didSendData(
buffered_resource_loader.h 123 virtual void didSendData(
simple_data_source.cc 163 void SimpleDataSource::didSendData(
buffered_resource_loader.cc 264 void BufferedResourceLoader::didSendData(
  /external/chromium/webkit/glue/
resource_fetcher.h 60 virtual void didSendData(
resource_fetcher.cc 79 void ResourceFetcher::didSendData(
websocketstreamhandle_impl.cc 46 virtual void DidSendData(WebKit::WebSocketStreamHandle*, int);
113 void WebSocketStreamHandleImpl::Context::DidSendData(
116 client_->didSendData(handle_, amount_sent);
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.h 150 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);

Completed in 1317 milliseconds

1 2