Searched refs:didReceiveData (Results 1 - 25 of 114) sorted by relevance

12345

/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileReaderLoaderClient.h41 virtual void didReceiveData() = 0;
H A DFileReaderLoader.h72 virtual void didReceiveData(const char*, int);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DThreadableLoaderClient.h46 virtual void didReceiveData(const char*, int /*dataLength*/) { } function in class:WebCore::ThreadableLoaderClient
H A DNetscapePlugInStreamLoader.h42 virtual void didReceiveData(NetscapePlugInStreamLoader*, const char*, int) = 0;
60 virtual void didReceiveData(const char*, unsigned, long long encodedDataLength, DataPayloadType) override;
H A DThreadableLoaderClientWrapper.h71 void didReceiveData(const char* data, int dataLength) function in class:WebCore::ThreadableLoaderClientWrapper
74 m_client->didReceiveData(data, dataLength);
H A DNetscapePlugInStreamLoader.cpp97 void NetscapePlugInStreamLoader::didReceiveData(const char* data, unsigned length, long long encodedDataLength, DataPayloadType dataPayloadType) function in class:WebCore::NetscapePlugInStreamLoader
111 m_client->didReceiveData(this, buffer ? buffer->data() : data, buffer ? buffer->size() : length);
H A DPingLoader.h68 virtual void didReceiveData(ResourceHandle*, const char*, unsigned, int) override { delete this; }
H A DResourceLoadNotifier.h58 void didReceiveData(ResourceLoader*, const char*, int dataLength, int encodedDataLength);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DSourceBufferPrivateGStreamer.cpp52 m_client->didReceiveData(reinterpret_cast_ptr<const char*>(data), length, m_type);
H A DWebKitMediaSourceGStreamer.h62 void didReceiveData(const char*, int, String);
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebEmbeddedView.idl43 HRESULT didReceiveData([in] IStream* data);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKDownloadDelegate.h38 - (void)_download:(_WKDownload *)download didReceiveData:(uint64_t)length;
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DMultipartHandle.cpp270 didReceiveData(lastPartialMatch);
276 didReceiveData(boundaryStart);
318 didReceiveData(m_buffer.size());
325 void MultipartHandle::didReceiveData(size_t length) function in class:WebCore::MultipartHandle
337 d->client()->didReceiveData(m_resourceHandle, data, length, length);
H A DCurlCacheManager.h53 void didReceiveData(ResourceHandle&, const char*, size_t); // Save data
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceHandleClient.cpp73 didReceiveData(handle, buffer->data(), buffer->size(), encodedDataLength);
H A DSynchronousLoaderClient.cpp70 void SynchronousLoaderClient::didReceiveData(ResourceHandle*, const char* data, unsigned length, int /*encodedDataLength*/) function in class:WebCore::SynchronousLoaderClient
H A DDataURL.cpp81 handle->client()->didReceiveData(handle, out.data(), out.size(), 0);
91 handle->client()->didReceiveData(handle, encodedData.data(), encodedData.length(), 0);
H A DSynchronousLoaderClient.h63 virtual void didReceiveData(ResourceHandle*, const char*, unsigned, int /*encodedDataLength*/) override;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DDownloadClient.h53 virtual void didReceiveData(WebContext*, DownloadProxy*, uint64_t length);
H A DDownloadClient.mm50 m_delegateMethods.downloadDidReceiveData = [delegate respondsToSelector:@selector(_download:didReceiveData:)];
69 void DownloadClient::didReceiveData(WebContext*, DownloadProxy* downloadProxy, uint64_t length)
72 [m_delegate.get() _download:wrapper(*downloadProxy) didReceiveData:length];
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DDownloadManagerEfl.h50 static void didReceiveData(WKContextRef, WKDownloadRef, uint64_t length, const void* clientInfo);
H A DDownloadManagerEfl.cpp78 void DownloadManagerEfl::didReceiveData(WKContextRef, WKDownloadRef wkDownload, uint64_t length, const void* clientInfo) function in class:WebKit::DownloadManagerEfl
132 wkDownloadClient.didReceiveData = didReceiveData;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKContextDownloadClient.h55 WKContextDownloadDidReceiveDataCallback didReceiveData; member in struct:WKContextDownloadClientV0
74 WKContextDownloadDidReceiveDataCallback didReceiveData; member in struct:WKContextDownloadClient
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitDownloadClient.cpp51 static void didReceiveData(WKContextRef, WKDownloadRef wkDownload, uint64_t length, const void* /* clientInfo */) function
106 didReceiveData,
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceHandleCFURLConnectionDelegateWithOperationQueue.h51 virtual void didReceiveData(CFDataRef, CFIndex originalLength) override;

Completed in 231 milliseconds

12345