Searched refs:download (Results 1 - 25 of 142) sorted by relevance

123456

/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKDownload.cpp40 WKURLRequestRef WKDownloadCopyRequest(WKDownloadRef download) argument
42 return toAPI(WebURLRequest::create(toImpl(download)->request()).leakRef());
45 WKDataRef WKDownloadGetResumeData(WKDownloadRef download) argument
47 return toAPI(toImpl(download)->resumeData());
50 void WKDownloadCancel(WKDownloadRef download) argument
52 return toImpl(download)->cancel();
H A DWKDownload.h41 WK_EXPORT WKURLRequestRef WKDownloadCopyRequest(WKDownloadRef download);
42 WK_EXPORT WKDataRef WKDownloadGetResumeData(WKDownloadRef download);
43 WK_EXPORT void WKDownloadCancel(WKDownloadRef download);
H A DWKFramePolicyListener.cpp47 toImpl(policyListenerRef)->download();
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm87 selector == @selector(download:willSendRequest:redirectResponse:) ||
88 selector == @selector(download:didReceiveResponse:) ||
89 selector == @selector(download:didReceiveDataOfLength:) ||
90 selector == @selector(download:shouldDecodeSourceDataOfMIMEType:) ||
91 selector == @selector(download:decideDestinationWithSuggestedFilename:) ||
92 selector == @selector(download:didCreateDestination:) ||
94 selector == @selector(download:didFailWithError:) ||
95 selector == @selector(download:shouldBeginChildDownloadOfSource:delegate:) ||
96 selector == @selector(download:didBeginChildDownload:)) {
103 - (void)downloadDidBegin:(NSURLDownload *)download
[all...]
H A DWebDownload.h65 - (NSWindow *)downloadWindowForAuthenticationSheet:(WebDownload *)download;
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownloadManager.cpp49 OwnPtr<Download> download = Download::create(downloadID, request); local
50 download->start(initiatingPage);
53 m_downloads.set(downloadID, download.leakPtr());
58 OwnPtr<Download> download = Download::create(downloadID, request); local
60 download->startWithHandle(initiatingPage, handle, initialRequest, response);
62 m_downloads.set(downloadID, download.leakPtr());
67 Download* download = m_downloads.get(downloadID); local
68 if (!download)
71 download->cancel();
74 void DownloadManager::downloadFinished(Download* download) argument
[all...]
/external/webkit/Source/WebKit/win/
H A DDefaultDownloadDelegate.cpp107 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename) argument
109 LOG(Download, "DefaultDownloadDelegate %p - decideDestinationWithSuggestedFilename %s", download, String(filename, SysStringLen(filename)).ascii().data());
113 if (FAILED(download->setDestination(filename, true))) {
136 if (FAILED(download->setDestination(fullPath, true))) {
142 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didCancelAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge) argument
144 LOG(Download, "DefaultDownloadDelegate %p - didCancelAuthenticationChallenge %p", download, challenge);
145 download = 0;
149 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didCreateDestination(IWebDownload* download, BSTR destination) argument
151 LOG(Download, "DefaultDownloadDelegate %p - didCreateDestination %s", download, String(destination, SysStringLen(destination)).ascii().data());
152 download
157 didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge) argument
165 didReceiveDataOfLength(IWebDownload* download, unsigned length) argument
173 didReceiveResponse(IWebDownload* download, IWebURLResponse* response) argument
181 shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode) argument
190 willResumeWithResponse(IWebDownload* download, IWebURLResponse* response, long long fromByte) argument
199 willSendRequest(IWebDownload* download, IWebMutableURLRequest* request, IWebURLResponse* redirectResponse, IWebMutableURLRequest** finalRequest) argument
210 didBegin(IWebDownload* download) argument
217 didFinish(IWebDownload* download) argument
224 didFailWithError(IWebDownload* download, IWebError* error) argument
232 registerDownload(IWebDownload* download) argument
240 unregisterDownload(IWebDownload* download) argument
[all...]
H A DDefaultDownloadDelegate.h50 virtual HRESULT STDMETHODCALLTYPE decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename);
51 virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);
52 virtual HRESULT STDMETHODCALLTYPE didCreateDestination(IWebDownload* download, BSTR destination);
53 virtual HRESULT STDMETHODCALLTYPE didFailWithError(IWebDownload* download, IWebError* error);
54 virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge);
55 virtual HRESULT STDMETHODCALLTYPE didReceiveDataOfLength(IWebDownload* download, unsigned length);
56 virtual HRESULT STDMETHODCALLTYPE didReceiveResponse(IWebDownload* download, IWebURLResponse* response);
57 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
58 virtual HRESULT STDMETHODCALLTYPE willResumeWithResponse(IWebDownload* download, IWebURLResponse* response, long long fromByte);
59 virtual HRESULT STDMETHODCALLTYPE willSendRequest(IWebDownload* download, IWebMutableURLReques
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitdownload.cpp54 * #WebKitDownload carries information about a download request,
56 * this object to control the download process, or to simply figure
113 static void webkit_download_set_response(WebKitDownload* download, const ResourceResponse& response);
114 static void webkit_download_set_status(WebKitDownload* download, WebKitDownloadStatus status);
118 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
119 WebKitDownloadPrivate* priv = download->priv;
141 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
142 WebKitDownloadPrivate* priv = download->priv;
156 // The download object may never have _start called on it, so we
171 WebKitDownload* download local
205 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
390 webkit_download_init(WebKitDownload* download) argument
427 WebKitDownload* download = WEBKIT_DOWNLOAD(g_object_new(WEBKIT_TYPE_DOWNLOAD, "network-request", request, NULL)); local
438 webkit_download_open_stream_for_uri(WebKitDownload* download, const gchar* uri, gboolean append=FALSE) argument
463 webkit_download_close_stream(WebKitDownload* download) argument
481 webkit_download_start(WebKitDownload* download) argument
518 webkit_download_cancel(WebKitDownload* download) argument
549 webkit_download_get_uri(WebKitDownload* download) argument
568 webkit_download_get_network_request(WebKitDownload* download) argument
587 webkit_download_get_network_response(WebKitDownload* download) argument
595 webkit_download_set_response(WebKitDownload* download, const ResourceResponse& response) argument
615 webkit_download_get_suggested_filename(WebKitDownload* download) argument
631 webkit_download_set_suggested_filename(WebKitDownload* download, const gchar* suggestedFilename) argument
653 webkit_download_get_destination_uri(WebKitDownload* download) argument
670 webkit_download_set_destination_uri(WebKitDownload* download, const gchar* destination_uri) argument
731 webkit_download_get_status(WebKitDownload* download) argument
739 webkit_download_set_status(WebKitDownload* download, WebKitDownloadStatus status) argument
763 webkit_download_get_total_size(WebKitDownload* download) argument
786 webkit_download_get_current_size(WebKitDownload* download) argument
804 webkit_download_get_progress(WebKitDownload* download) argument
832 webkit_download_get_elapsed_time(WebKitDownload* download) argument
843 webkit_download_received_data(WebKitDownload* download, const gchar* data, int length) argument
894 webkit_download_finished_loading(WebKitDownload* download) argument
906 webkit_download_error(WebKitDownload* download, const ResourceError& error) argument
920 DownloadClient(WebKitDownload* download) argument
[all...]
H A Dwebkitdownload.h76 webkit_download_start (WebKitDownload *download);
79 webkit_download_cancel (WebKitDownload *download);
82 webkit_download_get_uri (WebKitDownload *download);
85 webkit_download_get_network_request (WebKitDownload *download);
88 webkit_download_get_network_response (WebKitDownload *download);
91 webkit_download_get_suggested_filename (WebKitDownload *download);
94 webkit_download_get_destination_uri (WebKitDownload *download);
97 webkit_download_set_destination_uri (WebKitDownload *download,
101 webkit_download_get_progress (WebKitDownload *download);
104 webkit_download_get_elapsed_time (WebKitDownload *download);
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_item_model.h18 // depending on the type of download.
21 explicit BaseDownloadItemModel(DownloadItem* download) argument
22 : download_(download) { }
31 DownloadItem* download() { return download_; } function in class:BaseDownloadItemModel
42 explicit DownloadItemModel(DownloadItem* download);
60 SavePageModel(SavePackage* save, DownloadItem* download);
H A Ddownload_manager.cc5 #include "chrome/browser/download/download_manager.h"
19 #include "chrome/browser/download/download_extensions.h"
20 #include "chrome/browser/download/download_file_manager.h"
21 #include "chrome/browser/download/download_history.h"
22 #include "chrome/browser/download/download_item.h"
23 #include "chrome/browser/download/download_prefs.h"
24 #include "chrome/browser/download/download_safe_browsing_client.h"
25 #include "chrome/browser/download/download_status_updater.h"
26 #include "chrome/browser/download/download_util.h"
86 DownloadItem* download local
462 DownloadItem* download = new DownloadItem(this, *info, local
482 DownloadItem* download = active_downloads_[info->download_id]; local
528 DownloadItem* download = it->second; local
601 IsDownloadReadyForCompletion(DownloadItem* download) argument
623 MaybeCompleteDownload(DownloadItem* download) argument
658 DownloadItem* download = GetDownloadItem(download_id); local
831 DownloadItem* download = it->second; local
995 DangerousDownloadValidated(DownloadItem* download) argument
1011 DownloadItem* download = new DownloadItem(this, entries->at(i)); local
1031 DownloadItem* download = it->second; local
1076 ShowDownloadInBrowser(const DownloadCreateInfo& info, DownloadItem* download) argument
[all...]
H A Ddownload_file_manager.cc5 #include "chrome/browser/download/download_file_manager.h"
13 #include "chrome/browser/download/download_manager.h"
14 #include "chrome/browser/download/download_util.h"
29 // Throttle updates to the UI thread so that a fast moving download doesn't
151 // request is a download.
186 // download (in the UI thread), we may receive a few more updates before the IO
197 DownloadFile* download = GetDownloadFile(id); local
201 if (download)
202 download->AppendDataToFile(data->data(), data_len);
217 DownloadFile* download local
313 DownloadFile* download = GetDownloadFile(id); local
340 DownloadFile* download = GetDownloadFile(id); local
391 DownloadFile* download = GetDownloadFile(id); local
[all...]
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm51 - (id)initWithDownload:(WebKit::Download*)download;
85 static void setOriginalURLForDownload(WebPage *webPage, NSURLDownload *download, const ResourceRequest& initialRequest)
90 // since this download was initiated directly. <rdar://problem/5294691>
115 ASSERT([download respondsToSelector:@selector(_setOriginatingURL:)]);
116 [download _setOriginatingURL:hostOnlyURL.get()];
200 - (id)initWithDownload:(WebKit::Download*)download
206 _download = download;
215 - (void)downloadDidBegin:(NSURLDownload *)download
221 - (NSURLRequest *)download:(NSURLDownload *)download willSendReques
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDownload.idl135 HRESULT decideDestinationWithSuggestedFilename([in] IWebDownload* download, [in] BSTR filename);
137 HRESULT didCancelAuthenticationChallenge([in] IWebDownload* download, [in] IWebURLAuthenticationChallenge* challenge);
139 HRESULT didCreateDestination([in] IWebDownload* download, [in] BSTR destination);
141 HRESULT didFailWithError([in] IWebDownload* download, [in] IWebError* error);
143 HRESULT didReceiveAuthenticationChallenge([in] IWebDownload* download, [in] IWebURLAuthenticationChallenge* challenge);
145 HRESULT didReceiveDataOfLength([in] IWebDownload* download, [in] unsigned length);
147 HRESULT didReceiveResponse([in] IWebDownload* download, [in] IWebURLResponse* response);
149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);
151 HRESULT willResumeWithResponse([in] IWebDownload* download, [in] IWebURLResponse* response, [in] long long fromByte);
153 HRESULT willSendRequest([in] IWebDownload* download, [i
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdownload.c35 WebKitDownload* download; local
40 download = webkit_download_new(request);
42 g_assert_cmpstr(webkit_download_get_uri(download), ==, uri);
43 g_assert(webkit_download_get_network_request(download) == request);
44 g_assert(g_strrstr(uri, webkit_download_get_suggested_filename(download)));
45 g_assert(webkit_download_get_status(download) == WEBKIT_DOWNLOAD_STATUS_CREATED);
46 g_assert(!webkit_download_get_total_size(download));
47 g_assert(!webkit_download_get_current_size(download));
48 g_assert(!webkit_download_get_progress(download));
49 g_assert(!webkit_download_get_elapsed_time(download));
72 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
99 handle_download_requested_cb(WebKitDownload* download, gboolean* beenThere, gboolean asynch) argument
122 download_requested_cb(WebKitWebView* web_view, WebKitDownload* download, gboolean* beenThere) argument
131 download_requested_asynch_cb(WebKitWebView* web_view, WebKitDownload* download, gboolean* beenThere) argument
[all...]
/external/chromium/chrome/browser/ui/cocoa/download/
H A Ddownload_item_button.h21 @property(assign, nonatomic) FilePath download; variable
H A Ddownload_item_mac.h13 #include "chrome/browser/download/download_item.h"
14 #include "chrome/browser/download/download_manager.h"
25 // A class that bridges the visible mac download items to chromium's download
27 // |LoadIcon| if it wants to display the icon associated with this download.
39 virtual void OnDownloadUpdated(DownloadItem* download);
40 virtual void OnDownloadOpened(DownloadItem* download);
52 // The download item model we represent.
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFramePolicyListenerProxy.cpp43 void WebFramePolicyListenerProxy::download() function in class:WebKit::WebFramePolicyListenerProxy
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
H A DDownloadCFNet.cpp45 static void didStartCallback(CFURLDownloadRef download, const void* clientInfo);
46 static CFURLRequestRef willSendRequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void* clientInfo);
47 static void didReceiveAuthenticationChallengeCallback(CFURLDownloadRef download, CFURLAuthChallengeRef challenge, const void* clientInfo);
48 static void didReceiveResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, const void* clientInfo);
49 static void willResumeWithResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, UInt64 startingByte, const void* clientInfo);
50 static void didReceiveDataCallback(CFURLDownloadRef download, CFIndex length, const void* clientInfo);
51 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void* clientInfo);
52 static void decideDestinationWithSuggestedObjectNameCallback(CFURLDownloadRef download, CFStringRef objectName, const void* clientInfo);
53 static void didCreateDestinationCallback(CFURLDownloadRef download, CFURLRef path, const void* clientInfo);
54 static void didFinishCallback(CFURLDownloadRef download, cons
186 Download* download = downloadFromClientInfo(clientInfo); local
196 Download* download = downloadFromClientInfo(clientInfo); local
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dplsql.php45 'COMMENT_SINGLE' => array(1 =>'--'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#2930
46 'COMMENT_MULTI' => array('/*' => '*/'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#2950
48 'QUOTEMARKS' => array("'", '"'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm
51 //PL/SQL reserved keywords (http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/f_words.htm#LNPLS019)
79 //SQL functions (http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/toc.htm & http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions101a.htm#85925)
112 //PL/SQL packages (http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96612/intro2.htm#1025672)
142 //PL/SQL predefined exceptions (http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/07_errs.htm#784)
150 //Static data dictionary views (http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96536/ch2.htm)
194 //PL/SQL delimiters (http://download
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
H A DfeedPublish.eclipse.properties27 feedURL=http://download.eclipse.org/eclipse/downloads/builds-eclipse.xml
28 buildURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%
37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downloads/drops/%%buildID%%/
43 releaseNotesURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/buildNotes.php
45 downloadsURL=http://download.eclipse.org/eclipse/downloads/
60 JUnitTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/testResults.php
61 performanceTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/performance/performance.php
82 # only need the filename; the full http URL can be assembled from buildURL + "/download.php?dropFile=" + filename or buildURL (switched to ftp://) + "/" + filename
H A DfeedPublish.uml2.properties27 feedURL=http://download.eclipse.org/modeling/mdt/feeds/builds-uml2-uml-2.1.xml
37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/
44 updateManagerURL=http://download.eclipse.org/modeling/mdt/updates/?project=uml2-uml
57 dependencyURLs=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz http://www.eclipse.org/downloads/download.php?file=/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip
60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/testResults.php
70 # only need the filename; the full http URL can be assembled from buildURL + "/download.php?dropFile=" + filename or buildURL (switched to ftp://) + "/" + filename
91 scpTarget=khussey@download1.eclipse.org:/home/data/httpd/download.eclipse.org/tools/uml2/feeds/
H A DfeedWatch.emf.properties20 feedURL=http://download.eclipse.org/downloads/builds-eclipse.xml
/external/qemu/android/protocol/
H A Dcore-commands.h68 int download; member in struct:UICmdGetNetSpeedResp

Completed in 332 milliseconds

123456