Home
last modified time | relevance | path

Searched refs:m_download (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/win/
DWebDownloadCFNet.cpp87m_download.adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, request.cfURLRe… in init()
91 if (!m_download) { in init()
116 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest, &client)); in init()
118 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get()); in init()
119 …CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode); in init()
147 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest.get(), &client)); in initWithRequest()
151 if (!m_download) { in initWithRequest()
156 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get()); in initWithRequest()
157 …CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode); in initWithRequest()
186m_download.adoptCF(CFURLDownloadCreateWithResumeData(0, resumeData.get(), pathURL.get(), &client)); in initToResumeWithBundle()
[all …]
DWebDownload.h130 RetainPtr<CFURLDownloadRef> m_download; variable
DChangeLog-2009-06-1617221 (WebDownload::start): NULL check m_download
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DDownloadCFNet.cpp59 ASSERT(!m_download); in start()
66 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest, &client)); in start()
69 CFURLDownloadSetDeletesUponFailure(m_download.get(), false); in start()
71 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get()); in start()
72 …CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode); in start()
74 CFURLDownloadStart(m_download.get()); in start()
79 ASSERT(!m_download); in startWithHandle()
89m_download.adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, initialRequest.… in startWithHandle()
93 if (!m_download) in startWithHandle()
105 ASSERT(m_download); in cancel()
[all …]
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitdownload.cpp73 WebKitDownload* m_download; member in DownloadClient
921 : m_download(download) in DownloadClient()
927 webkit_download_set_response(m_download, response); in didReceiveResponse()
932 webkit_download_received_data(m_download, data, length); in didReceiveData()
937 webkit_download_finished_loading(m_download); in didFinishLoading()
942 webkit_download_error(m_download, error); in didFail()
/external/webkit/Source/WebKit2/WebProcess/Downloads/
DDownload.h120 RetainPtr<CFURLDownloadRef> m_download; variable