Lines Matching full:get
108 LOG_ERROR("Delegate is %p", m_delegate.get());
119 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
120 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
140 LOG(Download, "Delegate is %p", m_delegate.get());
147 m_request.adoptRef(WebMutableURLRequest::createInstance(webRequest.get()));
148 m_download.adoptCF(CFURLDownloadCreate(0, cfRequest.get(), &client));
157 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
158 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
178 LOG(Download, "Delegate is %p", m_delegate.get());
187 m_download.adoptCF(CFURLDownloadCreateWithResumeData(0, resumeData.get(), pathURL.get(), &client));
203 CFURLDownloadScheduleWithCurrentMessageQueue(m_download.get());
204 CFURLDownloadScheduleDownloadWithRunLoop(m_download.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
216 CFURLDownloadStart(m_download.get());
230 CFURLDownloadCancel(m_download.get());
245 CFURLDownloadCancel(m_download.get());
249 CFURLDownloadSetDeletesUponFailure(m_download.get(), false);
250 CFURLDownloadCancel(m_download.get());
252 resumeData = CFURLDownloadCopyResumeData(m_download.get());
258 appendResumeDataToBundle(resumeData.get(), m_bundlePath);
270 *result = CFURLDownloadDeletesUponFailure(m_download.get());
279 CFURLDownloadSetDeletesUponFailure(m_download.get(), !!deletesFileUponFailure);
294 CFURLDownloadSetDestination(m_download.get(), pathURL, !!allowOverwrite);
308 CFURLDownloadCancel(m_download.get());
315 m_delegate->didFailWithError(this, webError.get());
328 CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
347 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
369 if (FAILED(m_delegate->willSendRequest(this, webRequest.get(), webResponse.get(), &finalRequest)))
375 COMPtr<WebMutableURLRequest> finalWebRequest(AdoptCOM, WebMutableURLRequest::createInstance(finalRequest.get()));
376 m_request = finalWebRequest.get();
386 Credential credential = CredentialStorage::get(core(CFURLAuthChallengeGetProtectionSpace(challenge)));
389 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), challenge);
397 if (SUCCEEDED(m_delegate->didReceiveAuthenticationChallenge(this, webChallenge.get())))
400 cancelAuthenticationChallenge(webChallenge.get());
406 if (FAILED(m_delegate->didReceiveResponse(this, webResponse.get())))
413 if (FAILED(m_delegate->willResumeWithResponse(this, webResponse.get(), fromByte)))
512 if (FAILED(m_delegate->didFailWithError(this, webError.get())))