• Home
  • Raw
  • Download

Lines Matching refs:m_download

87m_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()
188 if (!m_download) { in initToResumeWithBundle()
202 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get()); in initToResumeWithBundle()
203 …CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode); in initToResumeWithBundle()
212 if (!m_download) in start()
215 CFURLDownloadStart(m_download.get()); in start()
226 if (!m_download) in cancel()
229 CFURLDownloadCancel(m_download.get()); in cancel()
230 m_download = 0; in cancel()
237 ASSERT(m_download); in cancelForResume()
238 if (!m_download) in cancelForResume()
244 CFURLDownloadCancel(m_download.get()); in cancelForResume()
248 CFURLDownloadSetDeletesUponFailure(m_download.get(), false); in cancelForResume()
249 CFURLDownloadCancel(m_download.get()); in cancelForResume()
251 resumeData.adoptCF(CFURLDownloadCopyResumeData(m_download.get())); in cancelForResume()
260 m_download = 0; in cancelForResume()
267 if (!m_download) in deletesFileUponFailure()
269 *result = CFURLDownloadDeletesUponFailure(m_download.get()); in deletesFileUponFailure()
276 if (!m_download) in setDeletesFileUponFailure()
278 CFURLDownloadSetDeletesUponFailure(m_download.get(), !!deletesFileUponFailure); in setDeletesFileUponFailure()
286 if (!m_download) in setDestination()
293 CFURLDownloadSetDestination(m_download.get(), pathURL, !!allowOverwrite); in setDestination()
306 if (m_download) { in cancelAuthenticationChallenge()
307 CFURLDownloadCancel(m_download.get()); in cancelAuthenticationChallenge()
308 m_download = 0; in cancelAuthenticationChallenge()
326 if (m_download) in continueWithoutCredentialForAuthenticationChallenge()
327 …CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthC… in continueWithoutCredentialForAuthenticationChallenge()
345 if (m_download) in useCredential()
346 …CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChall… in useCredential()
388 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), challenge); in didReceiveAuthenticationChallenge()
505 m_download = 0; in didFinish()