Searched defs:download (Results 1 - 19 of 19) sorted by relevance

/external/qemu/android/
H A Dandroid.h39 int download; member in struct:__anon3277
/external/webkit/WebKit/win/
H A DWebFramePolicyListener.cpp103 HRESULT STDMETHODCALLTYPE WebFramePolicyListener::download(void) function in class:WebFramePolicyListener
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 DWebFrame.cpp1684 void WebFrame::download(ResourceHandle* handle, const ResourceRequest& request, const ResourceRequest&, const ResourceResponse& response) function in class:WebFrame
1690 // If the WebView doesn't successfully provide a download delegate we'll pass a null one
1699 COMPtr<WebDownload> download; local
1700 download.adoptRef(WebDownload::createInstance(handle, request, response, downloadDelegate.get()));
/external/webkit/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
87 download_requested_cb(WebKitWebView* web_view, WebKitDownload* download, gboolean* beenThere) argument
[all...]
/external/webkit/WebKitTools/Scripts/webkitpy/
H A Dautoinstall.py43 download, unpack, python setup.py install
224 self.download(url, stream)
228 def download(self, url, stream): member in class:Cache
/external/webkit/WebKit/gtk/webkit/
H A Dwebkitdownload.cpp47 * #WebKitDownload carries information about a download request,
49 * this object to control the download process, or to simply figure
107 static void webkit_download_set_response(WebKitDownload* download, const ResourceResponse& response);
108 static void webkit_download_set_status(WebKitDownload* download, WebKitDownloadStatus status);
112 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
113 WebKitDownloadPrivate* priv = download->priv;
135 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
136 WebKitDownloadPrivate* priv = download->priv;
150 // The download object may never have _start called on it, so we
163 WebKitDownload* download local
197 WebKitDownload* download = WEBKIT_DOWNLOAD(object); local
378 webkit_download_init(WebKitDownload* download) argument
414 WebKitDownload* download = WEBKIT_DOWNLOAD(g_object_new(WEBKIT_TYPE_DOWNLOAD, "network-request", request, NULL)); local
425 webkit_download_open_stream_for_uri(WebKitDownload* download, const gchar* uri, gboolean append=FALSE) argument
450 webkit_download_close_stream(WebKitDownload* download) argument
468 webkit_download_start(WebKitDownload* download) argument
503 webkit_download_cancel(WebKitDownload* download) argument
534 webkit_download_get_uri(WebKitDownload* download) argument
553 webkit_download_get_network_request(WebKitDownload* download) argument
572 webkit_download_get_network_response(WebKitDownload* download) argument
580 webkit_download_set_response(WebKitDownload* download, const ResourceResponse& response) argument
600 webkit_download_get_suggested_filename(WebKitDownload* download) argument
616 webkit_download_set_suggested_filename(WebKitDownload* download, const gchar* suggestedFilename) argument
638 webkit_download_get_destination_uri(WebKitDownload* download) argument
655 webkit_download_set_destination_uri(WebKitDownload* download, const gchar* destination_uri) argument
716 webkit_download_get_status(WebKitDownload* download) argument
724 webkit_download_set_status(WebKitDownload* download, WebKitDownloadStatus status) argument
748 webkit_download_get_total_size(WebKitDownload* download) argument
771 webkit_download_get_current_size(WebKitDownload* download) argument
789 webkit_download_get_progress(WebKitDownload* download) argument
817 webkit_download_get_elapsed_time(WebKitDownload* download) argument
828 webkit_download_received_data(WebKitDownload* download, const gchar* data, int length) argument
879 webkit_download_finished_loading(WebKitDownload* download) argument
891 webkit_download_error(WebKitDownload* download, const ResourceError& error) argument
905 DownloadClient(WebKitDownload* download) argument
[all...]
H A Dwebkitwebview.cpp1525 * type and the content disposition is not a download; if WebKit
1530 * header. A value of "attachment" usually indicates a download
1584 * WebKitWebView::download-requested:
1586 * @download: a #WebKitDownload object that lets you control the
1587 * download process
1590 * not handled, the download is cancelled. If you handle the download
1606 * files you want your application to download (a common solution
1607 * is to download anything that WebKit can't handle, which you can
1610 * Return value: TRUE if the download shoul
2782 WebKitDownload* download; local
[all...]
/external/quake/src/com/android/quake/
H A DDownloaderActivity.java71 * starts an activity to download the data and returns false. If this
74 * (using a copy of its original intent) once the data download completes.
77 * @param fileConfigUrl The URL of the download configuration URL.
93 Log.i(LOG_TAG, "Versions match, no need to download.");
454 download(config);
575 File localConfig = download(mFileConfigUrl,
599 private void download(Config config) throws DownloaderException, method in class:DownloaderActivity.Downloader
603 Log.i(LOG_TAG, "Total bytes to download: "
624 // The part.size==0 check below allows us to download
868 private File download(Strin method in class:DownloaderActivity.Downloader
[all...]
/external/grub/netboot/
H A Detherboot.h349 char download[TFTP_MAX_PACKET]; member in struct:tftp_t::__anon1124::__anon1125
/external/quake/quake/src/QW/client/
H A Dclient.h155 } dltype_t; // download type
176 FILE *download; // file transfer from server member in struct:__anon4149
/external/quake/quake/src/QW/server/
H A Dserver.h171 FILE *download; // file being downloaded member in struct:client_s
/external/webkit/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp315 // is caused by a decision to download the main resource rather than
319 // If we decided to download the main resource or if the user cancelled
924 void FrameLoaderClientAndroid::download(ResourceHandle* handle, const ResourceRequest&, function in class:android::FrameLoaderClientAndroid
926 // Get the C++ side of the load listener and tell it to handle the download
/external/webkit/WebKit/chromium/src/
H A DFrameLoaderClientImpl.cpp847 // The server wants us to download instead of replacing the page contents.
1017 // with |download|).
1313 // point, our download detection code in the ResourceDispatcherHost is broken!
1314 void FrameLoaderClientImpl::download(ResourceHandle* handle, function in class:WebKit::FrameLoaderClientImpl
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp388 // have multi-threaded download, we might need to do the same
1009 void FrameLoaderClient::download(ResourceHandle* handle, const ResourceRequest& request, const ResourceRequest&, const ResourceResponse& response) function in class:WebKit::FrameLoaderClient
/external/webkit/WebKit/haiku/WebCoreSupport/
H A DFrameLoaderClientHaiku.cpp564 void FrameLoaderClientHaiku::download(ResourceHandle*, const ResourceRequest&, function in class:WebCore::FrameLoaderClientHaiku
/external/webkit/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.cpp812 void FrameLoaderClientQt::download(WebCore::ResourceHandle* handle, const WebCore::ResourceRequest&, const WebCore::ResourceRequest&, const WebCore::ResourceResponse&) function in class:WebCore::FrameLoaderClientQt
/external/webkit/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp672 void FrameLoaderClientWx::download(ResourceHandle*, const ResourceRequest&, const ResourceRequest&, const ResourceResponse&) function in class:WebCore::FrameLoaderClientWx
/external/webkit/WebCore/loader/
H A DEmptyClients.h195 virtual void download(ResourceHandle*, const ResourceRequest&, const ResourceRequest&, const ResourceResponse&) { } function in class:WebCore::EmptyFrameLoaderClient

Completed in 156 milliseconds