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

1 2

  /external/webkit/Source/WebCore/loader/
PingLoader.h 69 bool shouldUseCredentialStorage(ResourceHandle*) { return m_shouldUseCredentialStorage; }
SubresourceLoader.h 59 virtual bool shouldUseCredentialStorage();
ResourceLoader.h 95 virtual bool shouldUseCredentialStorage();
114 virtual bool shouldUseCredentialStorage(ResourceHandle*) { return shouldUseCredentialStorage(); }
DocumentThreadableLoader.h 84 virtual bool getShouldUseCredentialStorage(SubresourceLoader*, bool& shouldUseCredentialStorage);
PingLoader.cpp 98 m_shouldUseCredentialStorage = frame->loader()->client()->shouldUseCredentialStorage(frame->loader()->activeDocumentLoader(), identifier);
SubresourceLoader.cpp 245 bool SubresourceLoader::shouldUseCredentialStorage()
253 return ResourceLoader::shouldUseCredentialStorage();
ResourceLoader.cpp 467 bool ResourceLoader::shouldUseCredentialStorage()
470 return frameLoader()->shouldUseCredentialStorage(this);
DocumentThreadableLoader.cpp 285 bool DocumentThreadableLoader::getShouldUseCredentialStorage(SubresourceLoader* loader, bool& shouldUseCredentialStorage)
290 shouldUseCredentialStorage = false;
FrameLoaderClient.h 119 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier) = 0;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResourceLoadDelegatePrivate.idl 61 HRESULT shouldUseCredentialStorage([in] IWebView* webView, [in] unsigned long identifier, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldUse);
  /external/webkit/Source/WebCore/platform/network/
ResourceHandle.h 116 bool shouldUseCredentialStorage();
226 void createNSURLConnection(id delegate, bool shouldUseCredentialStorage, bool shouldContentSniff);
228 void createCFURLConnection(bool shouldUseCredentialStorage, bool shouldContentSniff);
ResourceHandleClient.h 88 virtual bool shouldUseCredentialStorage(ResourceHandle*) { return false; }
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 93 virtual bool shouldUseCredentialStorage(ResourceHandle*);
226 LOG(Network, "CFNet - shouldUseCredentialStorage(conn=%p, handle=%p) (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
231 return handle->shouldUseCredentialStorage();
383 static CFDictionaryRef createConnectionProperties(bool shouldUseCredentialStorage)
389 CFDictionaryRef sessionID = shouldUseCredentialStorage ?
399 void ResourceHandle::createCFURLConnection(bool shouldUseCredentialStorage, bool shouldContentSniff)
411 if (shouldUseCredentialStorage && firstRequest().url().protocolInHTTPFamily()) {
432 RetainPtr<CFDictionaryRef> connectionProperties(AdoptCF, createConnectionProperties(shouldUseCredentialStorage));
447 bool shouldUseCredentialStorage = !client() || client()->shouldUseCredentialStorage(this)
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 117 virtual bool shouldUseCredentialStorage(ResourceHandle*);
219 void ResourceHandle::createNSURLConnection(id delegate, bool shouldUseCredentialStorage, bool shouldContentSniff)
237 if (shouldUseCredentialStorage && firstRequest().url().protocolInHTTPFamily()) {
276 NSDictionary *sessionID = shouldUseCredentialStorage ? [NSDictionary dictionary] : [NSDictionary dictionaryWithObject:@"WebKitPrivateSession" forKey:@"_kCFURLConnectionSessionID"];
287 UNUSED_PARAM(shouldUseCredentialStorage);
313 bool shouldUseCredentialStorage = !client() || client()->shouldUseCredentialStorage(this);
329 shouldUseCredentialStorage,
594 bool ResourceHandle::shouldUseCredentialStorage()
597 return client()->shouldUseCredentialStorage(this)
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.h 112 virtual bool shouldUseCredentialStorage(ResourceHandle*) { return true; }
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 189 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.h 52 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 70 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.h 87 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
ResourceHandle.cpp 131 return m_client && m_client->shouldUseCredentialStorage(m_owner);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameLoaderClientEfl.h 78 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.h 64 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.h 93 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.h 59 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 189 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);

Completed in 1926 milliseconds

1 2