Searched defs:didReceiveData (Results 1 - 25 of 53) sorted by relevance

123

/external/webkit/Source/WebCore/loader/
H A DPingLoader.h65 void didReceiveData(ResourceHandle*, const char*, int, int) { delete this; } function in class:WebCore::PingLoader
H A DSubresourceLoaderClient.h49 virtual void didReceiveData(SubresourceLoader*, const char*, int /*dataLength*/) { } function in class:WebCore::SubresourceLoaderClient
H A DThreadableLoaderClient.h46 virtual void didReceiveData(const char*, int /*dataLength*/) { } function in class:WebCore::ThreadableLoaderClient
H A DNetscapePlugInStreamLoader.cpp95 void NetscapePlugInStreamLoader::didReceiveData(const char* data, int length, long long encodedDataLength, bool allAtOnce) function in class:WebCore::NetscapePlugInStreamLoader
99 m_client->didReceiveData(this, data, length);
101 ResourceLoader::didReceiveData(data, length, encodedDataLength, allAtOnce);
H A DThreadableLoaderClientWrapper.h71 void didReceiveData(const char* data, int dataLength) function in class:WebCore::ThreadableLoaderClientWrapper
74 m_client->didReceiveData(data, dataLength);
H A DResourceLoadNotifier.cpp77 void ResourceLoadNotifier::didReceiveData(ResourceLoader* loader, const char* data, int dataLength, int encodedDataLength) function in class:WebCore::ResourceLoadNotifier
H A DDocumentThreadableLoader.cpp235 void DocumentThreadableLoader::didReceiveData(SubresourceLoader* loader, const char* data, int dataLength) function in class:WebCore::DocumentThreadableLoader
244 m_client->didReceiveData(data, dataLength);
388 didReceiveData(0, bytes, len);
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamHandleClient.h48 virtual void didReceiveData(SocketStreamHandle*, const char* /*data*/, int /*length*/) { } function in class:WebCore::SocketStreamHandleClient
H A DResourceHandleClient.h74 virtual void didReceiveData(ResourceHandle*, const char*, int, int /*encodedDataLength*/) { } function in class:WebCore::ResourceHandleClient
/external/webkit/Source/WebCore/loader/icon/
H A DIconLoader.cpp103 void IconLoader::didReceiveData(SubresourceLoader* unusedLoader, const char*, int unusedSize) function in class:WebCore::IconLoader
109 LOG(IconDatabase, "IconLoader::didReceiveData() - Loader %p, number of bytes %i", unusedLoader, unusedSize);
/external/webkit/Source/WebCore/workers/
H A DWorkerScriptLoader.cpp116 void WorkerScriptLoader::didReceiveData(const char* data, int len) function in class:WebCore::WorkerScriptLoader
/external/webkit/Source/WebKit/chromium/public/
H A DWebURLLoaderClient.h61 virtual void didReceiveData(WebURLLoader*, const char* data, int dataLength, int encodedDataLength) { } function in class:WebKit::WebURLLoaderClient
/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp61 void WebDownloadClient::didReceiveData(WebContext* webContext, DownloadProxy* downloadProxy, uint64_t length) function in class:WebKit::WebDownloadClient
63 if (!m_client.didReceiveData)
66 m_client.didReceiveData(toAPI(webContext), toAPI(downloadProxy), length, m_client.clientInfo);
/external/chromium/webkit/glue/
H A Dresource_fetcher.cc90 void ResourceFetcher::didReceiveData( function in class:webkit_glue::ResourceFetcher
/external/webkit/Source/WebCore/fileapi/
H A DFileReader.cpp192 void FileReader::didReceiveData() function in class:WebCore::FileReader
H A DFileReaderLoader.cpp157 void FileReaderLoader::didReceiveData(const char* data, int dataLength) function in class:WebCore::FileReaderLoader
180 m_client->didReceiveData();
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceRequest.cpp256 void CachedResourceRequest::didReceiveData(SubresourceLoader* loader, const char* data, int size) function in class:WebCore::CachedResourceRequest
/external/webkit/Source/WebCore/notifications/
H A DNotification.cpp193 void Notification::didReceiveData(const char* data, int dataLength) function in class:WebCore::Notification
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceHandleAndroid.cpp132 virtual void didReceiveData(ResourceHandle*, const char* data, int len, int encodedDataLength) function in class:WebCore::SyncLoader
/external/webkit/Source/WebCore/platform/network/qt/
H A DResourceHandleQt.cpp63 virtual void didReceiveData(ResourceHandle*, const char* data, int length, int) { m_data.append(data, length); } function in class:WebCore::WebCoreSynchronousLoader
/external/webkit/Source/WebKit/chromium/src/
H A DSocketStreamHandle.cpp65 virtual void didReceiveData(WebSocketStreamHandle*, const WebData&);
152 void SocketStreamHandleInternal::didReceiveData(WebSocketStreamHandle* socketHandle, const WebData& data) function in class:WebCore::SocketStreamHandleInternal
154 LOG(Network, "didReceiveData");
158 m_handle->m_client->didReceiveData(m_handle, data.data(), data.size());
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.cpp223 void EmbeddedWidget::didReceiveData(const char* data, int length) function in class:EmbeddedWidget
226 m_view->didReceiveData(stream.get());
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp113 void DownloadProxy::didReceiveData(uint64_t length) function in class:WebKit::DownloadProxy
118 m_webContext->downloadClient().didReceiveData(m_webContext, this, length);
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.cpp86 void Download::didReceiveData(uint64_t length) function in class:WebKit::Download
/external/chromium/webkit/glue/media/
H A Dsimple_data_source.cc183 void SimpleDataSource::didReceiveData( function in class:webkit_glue::SimpleDataSource

Completed in 1124 milliseconds

123