HomeSort by relevance Sort by last modified time
    Searched full:allowoverwrite (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 100 String Download::retrieveDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite)
104 if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite, sandboxExtensionHandle)))
114 String Download::decideDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite)
116 String destination = retrieveDestinationWithSuggestedFilename(filename, allowOverwrite);
118 didDecideDestination(destination, allowOverwrite);
Download.h 83 String decideDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite);
89 void didDecideDestination(const String&, bool allowOverwrite);
105 String retrieveDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDownload.idl 114 - (void)setDestination:(NSString *)path allowOverwrite:(BOOL)allowOverwrite
116 HRESULT setDestination([in] BSTR path, [in] BOOL allowOverwrite);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp 124 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
130 m_allowOverwrite = allowOverwrite;
136 CFURLDownloadSetDestination(m_download.get(), bundlePathURL.get(), allowOverwrite);
187 bool allowOverwrite;
188 download->decideDestinationWithSuggestedFilename(objectName, allowOverwrite);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 173 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
279 bool allowOverwrite;
281 destination = _download->decideDestinationWithSuggestedFilename(filename, allowOverwrite);
284 [download setDestination:destination allowOverwrite:allowOverwrite];
  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 77 String WebDownloadClient::decideDestinationWithSuggestedFilename(WebContext* webContext, DownloadProxy* downloadProxy, const String& filename, bool& allowOverwrite)
82 WKRetainPtr<WKStringRef> destination(AdoptWK, m_client.decideDestinationWithSuggestedFilename(toAPI(webContext), toAPI(downloadProxy), toAPI(filename.impl()), &allowOverwrite, m_client.clientInfo));
WebDownloadClient.h 51 String decideDestinationWithSuggestedFilename(WebContext*, DownloadProxy*, const String& filename, bool& allowOverwrite);
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.messages.in 30 DecideDestinationWithSuggestedFilename(String filename) -> (String destination, bool allowOverwrite, WebKit::SandboxExtension::Handle sandboxExtensionHandle)
DownloadProxy.h 77 void decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle);
DownloadProxy.cpp 129 void DownloadProxy::decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle)
134 destination = m_webContext->downloadClient().decideDestinationWithSuggestedFilename(m_webContext, this, filename, allowOverwrite);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
DownloadCurl.cpp 56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
DownloadQt.cpp 55 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
DownloadSoup.cpp 56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /external/webkit/Source/WebKit/win/
WebDownload.h 96 /* [in] */ BOOL allowOverwrite);
WebDownloadCurl.cpp 121 /* [in] */ BOOL allowOverwrite)
WebDownloadCFNet.cpp 284 /* [in] */ BOOL allowOverwrite)
293 CFURLDownloadSetDestination(m_download.get(), pathURL, !!allowOverwrite);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 78 typedef WKStringRef (*WKContextDownloadDecideDestinationWithSuggestedFilenameCallback)(WKContextRef context, WKDownloadRef download, WKStringRef filename, bool* allowOverwrite, const void *clientInfo);

Completed in 778 milliseconds