HomeSort by relevance Sort by last modified time
    Searched refs:canAuthenticateAgainstProtectionSpace (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebKit/mac/WebView/
WebResourceLoadDelegatePrivate.h 48 @method webView:resource:canAuthenticateAgainstProtectionSpace:forDataSource:
53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource;
WebView.mm     [all...]
  /external/webkit/Source/WebCore/loader/
ResourceLoader.h 99 virtual bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
121 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace& protectionSpace) { return canAuthenticateAgainstProtectionSpace(protectionSpace); }
ResourceLoader.cpp 490 bool ResourceLoader::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
493 return frameLoader()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
FrameLoaderClient.h 123 virtual bool canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long identifier, const ProtectionSpace&) = 0;
EmptyClients.h 259 virtual bool canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long, const ProtectionSpace&) { return false; }
FrameLoader.h 157 bool canAuthenticateAgainstProtectionSpace(ResourceLoader* loader, const ProtectionSpace& protectionSpace);
FrameLoader.cpp     [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleClient.h 92 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&) { return false; }
ResourceHandle.h 128 bool canAuthenticateAgainstProtectionSpace(const ProtectionSpace&);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 124 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&);
667 bool ResourceHandle::canAuthenticateAgainstProtectionSpace(const ProtectionSpace& protectionSpace)
670 return client()->canAuthenticateAgainstProtectionSpace(this, protectionSpace);
864 - (BOOL)connection:(NSURLConnection *)unusedConnection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
872 return m_handle->canAuthenticateAgainstProtectionSpace(core(protectionSpace));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.h 67 virtual bool canAuthenticateAgainstProtectionSpace(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ProtectionSpace&);
WebFrameLoaderClient.cpp 198 bool WebFrameLoaderClient::canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long, const ProtectionSpace& protectionSpace)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 226 - (BOOL)download:(NSURLDownload *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 83 virtual bool canAuthenticateAgainstProtectionSpace(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ProtectionSpace&);
WebFrameLoaderClient.mm 423 bool WebFrameLoaderClient::canAuthenticateAgainstProtectionSpace(DocumentLoader* loader, unsigned long identifier, const ProtectionSpace& protectionSpace)
432 return CallResourceLoadDelegateReturningBoolean(NO, implementations->canAuthenticateAgainstProtectionSpaceFunc, webView, @selector(webView:resource:canAuthenticateAgainstProtectionSpace:forDataSource:), resource, webProtectionSpace, dataSource(loader));
    [all...]

Completed in 317 milliseconds