Home | History | Annotate | Download | only in win

Lines Matching refs:m_download

87     m_download.adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, request.cfURLRequest(), response.cfURLResponse(), &client));
91 if (!m_download) {
116 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest, &client));
118 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
119 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
147 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest.get(), &client));
151 if (!m_download) {
156 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
157 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
186 m_download.adoptCF(CFURLDownloadCreateWithResumeData(0, resumeData.get(), pathURL.get(), &client));
188 if (!m_download) {
202 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
203 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
212 if (!m_download)
215 CFURLDownloadStart(m_download.get());
226 if (!m_download)
229 CFURLDownloadCancel(m_download.get());
230 m_download = 0;
237 ASSERT(m_download);
238 if (!m_download)
244 CFURLDownloadCancel(m_download.get());
248 CFURLDownloadSetDeletesUponFailure(m_download.get(), false);
249 CFURLDownloadCancel(m_download.get());
251 resumeData.adoptCF(CFURLDownloadCopyResumeData(m_download.get()));
260 m_download = 0;
267 if (!m_download)
269 *result = CFURLDownloadDeletesUponFailure(m_download.get());
276 if (!m_download)
278 CFURLDownloadSetDeletesUponFailure(m_download.get(), !!deletesFileUponFailure);
286 if (!m_download)
293 CFURLDownloadSetDestination(m_download.get(), pathURL, !!allowOverwrite);
306 if (m_download) {
307 CFURLDownloadCancel(m_download.get());
308 m_download = 0;
326 if (m_download)
327 CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
345 if (m_download)
346 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
388 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), challenge);
505 m_download = 0;