HomeSort by relevance Sort by last modified time
    Searched refs:Download (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
DownloadQt.cpp 27 #include "Download.h"
35 void Download::start(WebPage* initiatingWebPage)
40 void Download::startWithHandle(WebPage* initiatingPage, ResourceHandle*, const ResourceRequest& initialRequest, const ResourceResponse&)
45 void Download::cancel()
50 void Download::platformInvalidate()
55 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
60 void Download::platformDidFinish()
65 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
70 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
75 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
DownloadSoup.cpp 28 #include "Download.h"
36 void Download::start(WebPage* initiatingWebPage)
41 void Download::startWithHandle(WebPage* initiatingPage, ResourceHandle*, const ResourceRequest& initialRequest, const ResourceResponse&)
46 void Download::cancel()
51 void Download::platformInvalidate()
56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
61 void Download::platformDidFinish()
66 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
71 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
76 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
DownloadCurl.cpp 28 #include "Download.h"
36 void Download::start(WebPage* initiatingWebPage)
41 void Download::startWithHandle(WebPage* initiatingPage, ResourceHandle*, const ResourceRequest& initialRequest, const ResourceResponse&)
46 void Download::cancel()
51 void Download::platformInvalidate()
56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
66 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
71 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 27 #include "Download.h"
42 PassOwnPtr<Download> Download::create(uint64_t downloadID, const ResourceRequest& request)
44 return adoptPtr(new Download(downloadID, request));
47 Download::Download(uint64_t downloadID, const ResourceRequest& request)
59 Download::~Download()
66 CoreIPC::Connection* Download::connection() const
71 void Download::didStart(
    [all...]
DownloadManager.h 40 class Download;
54 void downloadFinished(Download*);
60 HashMap<uint64_t, Download*> m_downloads;
DownloadManager.cpp 29 #include "Download.h"
49 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)
67 Download* download = m_downloads.get(downloadID); local
    [all...]
Download.h 62 class Download : public CoreIPC::MessageSender<Download> {
63 WTF_MAKE_NONCOPYABLE(Download);
65 static PassOwnPtr<Download> create(uint64_t downloadID, const WebCore::ResourceRequest&);
66 ~Download();
101 Download(uint64_t downloadID, const WebCore::ResourceRequest&);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
ThreadingTest.java 34 * Download manager tests that require multithreading.
50 * a download.
54 Download download = enqueueRequest(getRequest()); local
55 while (download.getStatus() != DownloadManager.STATUS_SUCCESSFUL) {
62 final List<Pair<Download, String>> downloads = Lists.newArrayList();
66 final String body = "DOWNLOAD " + i + " CONTENTS";
71 final Download d = enqueueRequest(getRequest());
79 for (Pair<Download,String> d : downloads) {
86 for (Pair<Download, String> d : downloads)
    [all...]
PublicApiFunctionalTest.java 109 Download download = enqueueRequest(getRequest()); local
111 download.getLongField(DownloadManager.COLUMN_STATUS));
113 download.getStringField(DownloadManager.COLUMN_URI));
114 assertEquals(download.mId, download.getLongField(DownloadManager.COLUMN_ID));
116 download.getLongField(DownloadManager.COLUMN_LAST_MODIFIED_TIMESTAMP));
119 download.runUntilStatus(DownloadManager.STATUS_SUCCESSFUL);
124 Uri localUri = Uri.parse(download.getStringField(DownloadManager.COLUMN_LOCAL_URI));
127 assertEquals("text/plain", download.getStringField(DownloadManager.COLUMN_MEDIA_TYPE))
148 final Download download = enqueueRequest(getRequest() local
166 Download download = enqueueRequest(getRequest() local
188 Download download = enqueueRequest(getRequest()); local
208 Download download = enqueueRequest(getRequest().setDestinationUri(getExternalUri())); local
352 Download download = enqueueRequest(getRequest().setDestinationUri(destination)); local
372 Download download = enqueueRequest(getRequest().addRequestHeader("Header1", "value1") local
382 Download download = enqueueRequest(getRequest().addRequestHeader("header", "value")); local
398 Download download = enqueueRequest(getRequest()); local
425 final Download download = enqueueRequest(getRequest()); local
439 final Download download = enqueueRequest(getRequest()); local
466 final Download download = enqueueRequest(getRequest()); local
488 Download download = enqueueRequest(getRequest()); local
510 Download download = enqueueRequest(getRequest()); local
529 Download download = enqueueRequest(getRequest()); local
541 Download download = enqueueRequest(getRequest()); local
562 Download download = enqueueRequest(getRequest()); local
577 Download download = enqueueRequest(getRequest()); local
596 Download download = enqueueRequest(getRequest()); local
610 final Download download = enqueueRequest(getRequest()); local
618 final Download download = enqueueRequest( local
630 final Download download = enqueueRequest(getRequest()); local
641 final Download download = enqueueRequest(getRequest().setNotificationVisibility( local
656 Download download = enqueueRequest(getRequest()); local
670 Download download = enqueueRequest(getRequest()); local
689 Download download = enqueueRequest(getRequest().setDestinationUri(destination)); local
694 Download download = enqueueRequest(getRequest()); local
708 Download download = enqueueRequest(getRequest()); local
724 Download download = enqueueRequest(getRequest()); local
742 final Download download = enqueueRequest(getRequest()); local
    [all...]
AbstractPublicApiTest.java 37 * Code common to tests that use the download manager public API.
41 class Download {
44 private Download(long downloadId) {
155 // max time to wait before giving up on the current download operation.
158 // download thread
192 // download not done yet. sleep a while and try again
225 protected Download enqueueRequest(DownloadManager.Request request) {
226 return new Download(mManager.enqueue(request));
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.cpp 107 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename)
109 LOG(Download, "DefaultDownloadDelegate %p - decideDestinationWithSuggestedFilename %s", download, String(filename, SysStringLen(filename)).ascii().data());
113 if (FAILED(download->setDestination(filename, true))) {
133 LOG(Download, "Setting path to %s", debug.ascii().data());
136 if (FAILED(download->setDestination(fullPath, true))) {
142 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didCancelAuthenticationChallenge(IWebDownload* download, IWebURLAuthenticationChallenge* challenge)
144 LOG(Download, "DefaultDownloadDelegate %p - didCancelAuthenticationChallenge %p", download, challenge);
145 download = 0
    [all...]
WebDownloadCFNet.cpp 61 static void didStartCallback(CFURLDownloadRef download, const void *clientInfo);
62 static CFURLRequestRef willSendRequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void *clientInfo);
63 static void didReceiveAuthenticationChallengeCallback(CFURLDownloadRef download, CFURLAuthChallengeRef challenge, const void *clientInfo);
64 static void didReceiveResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, const void *clientInfo);
65 static void willResumeWithResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, UInt64 startingByte, const void *clientInfo);
66 static void didReceiveDataCallback(CFURLDownloadRef download, CFIndex length, const void *clientInfo);
67 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void *clientInfo);
68 static void decideDestinationWithSuggestedObjectNameCallback(CFURLDownloadRef download, CFStringRef objectName, const void *clientInfo);
69 static void didCreateDestinationCallback(CFURLDownloadRef download, CFURLRef path, const void *clientInfo);
70 static void didFinishCallback(CFURLDownloadRef download, const void *clientInfo)
    [all...]
WebDownload.cpp 64 LOG(Download, "WebDownload - Destroying download (%p)", this);
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.h 44 class Download;
56 void didReceiveAuthenticationChallenge(Download*, const WebCore::AuthenticationChallenge&);
AuthenticationManager.cpp 29 #include "Download.h"
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge)
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
90 // This authentication challenge comes from a download.
91 Download::receivedCredential(challenge, credential);
105 // This authentication challenge comes from a download.
106 Download::receivedRequestToContinueWithoutCredential(challenge);
119 // This authentication challenge comes from a download.
120 Download::receivedCancellation(challenge)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cf/win/
DownloadCFWin.cpp 27 #include "Download.h"
33 void Download::platformDidFinish()
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp 27 #include "Download.h"
45 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)
186 Download* download = downloadFromClientInfo(clientInfo); local
196 Download* download = downloadFromClientInfo(clientInfo); local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 27 #import "Download.h"
49 WebKit::Download* _download;
51 - (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()];
120 void Download::start(WebPage* initiatingPage)
134 void Download::startWithHandle(WebPage* initiatingPage, ResourceHandle* handle, const ResourceRequest& initialRe (…)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 7 Before building the JavaScript target you will need to download a few third
10 * ant-contrib: Download ant-contrib here: http://downloads.sourceforge.net/ant-contrib/ant-contrib-1.0b3-bin.zip?modtime=1162486738&big_mirror=0
14 * closure compiler: Download here: http://closure-compiler.googlecode.com/files/compiler-latest.zip
18 * jsdoc-toolkit: Download the latest release from here: http://code.google.com/p/jsdoc-toolkit/downloads/list
22 * jsunit: Download here: https://sourceforge.net/project/showfiles.php?group_id=28041&package_id=19823&release_id=404277
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
download.php 3 <title>Eclipse Download Click Through</title>
31 echo 'If your download does not begin automatically click <a href="'.$dropFile.'">here</a>.';
43 of Eclipse. Once you have read the notes you can click on the Download link
44 to download the drop.</p>
50 echo '<a href="'.$dropFile.'">Download</a>';
  /external/webkit/Source/WebKit/chromium/public/
WebMediaPlayer.h 77 Download,
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
VideoEditorProject.java 53 private static final String TAG_DOWNLOAD = "download";
69 private final List<Download> mDownloads;
82 * Download item
84 public static class Download {
98 private Download(String mediaUri, String mimeType, String filename, long time) {
151 Uri exportedMovieUri, String theme, List<Download> downloads) {
160 mDownloads = new ArrayList<Download>();
1146 final Download download = mDownloads.get(i); local
    [all...]
  /external/smali/gradle/wrapper/
gradle-wrapper.jar 
  /build/tools/droiddoc/templates-ds/
sdkpage.cs 37 else ?>Download the SDK<?cs /if ?>
57 <p><a href="/sdk/index.html">Download the current Android SDK</a></p>
79 <table class="download" id="download-table">
123 $("#downloadForRealz").html("Download " + $(link).text());
128 location.hash = "download";
195 >DOWNLOAD FOR OTHER PLATFORMS</a></h4>
202 <table class="download">
258 <table class="download">
343 /* set up primary adt download button *
    [all...]
  /build/tools/droiddoc/templates-sac/
sdkpage.cs 36 else ?>Download the SDK<?cs /if ?>
56 <p><a href="/sdk/index.html">Download the current Android SDK</a></p>
78 <table class="download" id="download-table">
122 $("#downloadForRealz").html("Download " + $(link).text());
127 location.hash = "download";
194 >DOWNLOAD FOR OTHER PLATFORMS</a></h4>
201 <table class="download">
257 <table class="download">
342 /* set up primary adt download button *
    [all...]

Completed in 1637 milliseconds

1 2