Searched refs:m_download (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/
H A DDownloadAuthenticationClient.cpp36 : m_download(download)
43 if (!m_download)
45 m_download->useCredential(challenge, credential);
50 if (!m_download)
52 m_download->continueWithoutCredential(challenge);
57 if (!m_download)
59 m_download->cancelAuthenticationChallenge(challenge);
H A DDownloadAuthenticationClient.h46 void detach() { m_download = 0; }
61 Download* m_download; member in class:WebKit::DownloadAuthenticationClient
H A DDownload.h141 RetainPtr<CFURLDownloadRef> m_download; member in class:WebKit::Download
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/cfnet/
H A DDownloadCFNet.cpp62 if (!m_download)
65 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), challenge.cfURLAuthChallengeRef());
70 if (!m_download)
72 CFURLDownloadUseCredential(m_download.get(), 0, challenge.cfURLAuthChallengeRef());
77 if (!m_download)
79 CFURLDownloadCancel(m_download.get());
80 m_download = 0;
92 ASSERT(!m_download);
99 m_download = adoptCF(CFURLDownloadCreate(0, cfRequest, &client));
102 CFURLDownloadSetDeletesUponFailure(m_download
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebDownloadCFNet.cpp87 m_download = adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, request.cfURLRequest(UpdateHTTPBody), 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
[all...]
H A DWebDownloadCurl.cpp67 m_download.init(this, url);
90 if (!m_download.start())
101 if (!m_download.cancel())
116 *result = m_download.deletesFileUponFailure() ? TRUE : FALSE;
123 m_download.setDeletesFileUponFailure(deletesFileUponFailure);
133 m_download.setDestination(m_destination);
166 ResourceResponse response = m_download.getResponse();
H A DWebDownload.h142 RetainPtr<CFURLDownloadRef> m_download; member in class:WebDownload
144 CurlDownload m_download; member in class:WebDownload
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/qt/
H A DQtFileDownloader.cpp41 : m_download(download)
116 m_download->didCreateDestination(m_destinationFile->fileName());
135 m_download->didFail(QNetworkReplyHandler::errorForReply(m_reply.get()), CoreIPC::DataReference(0, 0));
165 m_download->didFail(downloadError, CoreIPC::DataReference(0, 0));
186 m_download->didReceiveResponse(response);
207 m_download->didReceiveData(bytesWritten);
230 m_download->didFinish();
H A DQtFileDownloader.h71 Download* m_download; member in class:WebKit::QtFileDownloader
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_download_job.cpp39 : m_download(download)
53 return WKDownloadGetID(m_download.get());
88 WKRetainPtr<WKURLRequestRef> wkURLRequest(AdoptWK, WKDownloadCopyRequest(m_download.get()));
159 WKDownloadCancel(m_download.get());
H A Dewk_download_job_private.h75 WKRetainPtr<WKDownloadRef> m_download; member in class:EwkDownloadJob
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/soup/
H A DDownloadSoup.cpp51 : m_download(download)
64 m_download->didFail(error, CoreIPC::DataReference());
70 m_download->didReceiveResponse(response);
86 String destinationURI = m_download->decideDestinationWithSuggestedFilename(suggestedFilename, overwrite);
110 m_download->didCreateDestination(destinationURI);
127 m_download->didReceiveData(bytesWritten);
133 m_download->didFinish();
175 Download* m_download; member in class:WebKit::DownloadClient
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/
H A DTestDownloads.cpp398 test->m_download = download;
415 m_download = 0;
417 g_assert(m_download.get());
435 g_signal_connect(m_download.get(), "decide-destination", G_CALLBACK(downloadDecideDestinationCallback), this);
436 g_signal_connect(m_download.get(), "finished", G_CALLBACK(downloadFinishedCallback), this);
440 GRefPtr<WebKitDownload> m_download; member in class:WebViewDownloadTest
481 webkit_download_cancel(m_download.get());
483 m_download = 0;
494 WebKitURIRequest* request = webkit_download_get_request(test->m_download.get());
498 g_assert(test->m_webView == webkit_download_get_web_view(test->m_download
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitdownload.cpp75 WebKitDownload* m_download; member in class:DownloadClient
927 : m_download(download)
933 webkit_download_set_response(m_download, response);
935 m_download->priv->resourceHandle->cancel();
936 webkit_download_error(m_download, ResourceError(errorDomainDownload, response.httpStatusCode(),
943 webkit_download_received_data(m_download, data, length);
948 webkit_download_finished_loading(m_download);
953 webkit_download_error(m_download, error);

Completed in 153 milliseconds