Searched defs:hostname (Results 1 - 25 of 154) sorted by last modified time

1234567

/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp52 String WorkerLocation::hostname() const function in class:WebCore::WorkerLocation
/external/webkit/Source/WebKit/chromium/src/
H A DPlatformBridge.cpp327 void PlatformBridge::prefetchDNS(const String& hostname) argument
329 webKitClient()->prefetchHostName(hostname);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKCookieManager.cpp51 void WKCookieManagerDeleteCookiesForHostname(WKCookieManagerRef cookieManagerRef, WKStringRef hostname) argument
53 toImpl(cookieManagerRef)->deleteCookiesForHostname(toImpl(hostname)->string());
H A DWKMediaCacheManager.cpp44 void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManagerRef, WKStringRef hostname) argument
46 toImpl(mediaCacheManagerRef)->clearCacheForHostname(toWTFString(hostname));
/external/webkit/Source/WebKit2/UIProcess/
H A DWebCookieManagerProxy.cpp100 void WebCookieManagerProxy::deleteCookiesForHostname(const String& hostname) argument
103 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::DeleteCookiesForHostname(hostname));
H A DWebMediaCacheManagerProxy.cpp92 void WebMediaCacheManagerProxy::clearCacheForHostname(const String& hostname) argument
94 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebMediaCacheManager::ClearCacheForHostname(hostname));
/external/webkit/Source/WebKit2/WebProcess/Cookies/
H A DWebCookieManager.cpp69 void WebCookieManager::deleteCookiesForHostname(const String& hostname) argument
73 WebCore::deleteCookiesForHostname(hostname);
/external/webkit/Source/WebKit2/WebProcess/MediaCache/
H A DWebMediaCacheManager.cpp67 void WebMediaCacheManager::clearCacheForHostname(const String& hostname) argument
72 HTMLMediaElement::clearMediaCacheForSite(hostname);
/external/webkit/Source/WebCore/bindings/js/
H A DJSLocationCustom.cpp206 UString hostname = value.toString(exec); local
209 impl()->setHostname(ustringToString(hostname), activeDOMWindow(exec), firstDOMWindow(exec));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8LocationCustom.cpp77 INC_STATS("DOM.Location.hostname._set");
82 String hostname = toWebCoreString(value); local
84 impl->setHostname(hostname, state->activeWindow(), state->firstWindow());
/external/webkit/Source/WebCore/html/
H A DHTMLAnchorElement.cpp362 String HTMLAnchorElement::hostname() const function in class:WebCore::HTMLAnchorElement
/external/webkit/Source/WebCore/page/
H A DLocation.cpp83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
88 String Location::hostname() const function in class:WebCore::Location
177 void Location::setHostname(const String& hostname, DOMWindow* activeWindow, DOMWindow* firstWindow) argument
182 url.setHost(hostname);
/external/webkit/Source/WebCore/platform/efl/
H A DCookieJarEfl.cpp60 void deleteCookiesForHostname(const String& hostname) argument
/external/webkit/Source/WebCore/platform/haiku/
H A DCookieJarHaiku.cpp83 void deleteCookiesForHostname(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/android/
H A DCookieJarAndroid.cpp60 void deleteCookiesForHostname(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/brew/
H A DDNSBrew.cpp33 void prefetchDNS(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/cf/
H A DCookieJarCFNet.cpp254 void deleteCookiesForHostname(const String& hostname) argument
268 if (String(domain.get()) == hostname)
H A DDNSCFNet.cpp182 void DNSResolveQueue::resolve(const String& hostname) argument
186 RetainPtr<CFStringRef> hostnameCF(AdoptCF, hostname.createCFString());
205 void prefetchDNS(const String& hostname) argument
208 if (hostname.isEmpty())
210 DNSResolveQueue::shared().add(hostname);
/external/webkit/Source/WebCore/platform/network/chromium/
H A DCookieJarChromium.cpp75 void deleteCookiesForHostname(const String& hostname) argument
H A DDNSChromium.cpp34 void prefetchDNS(const String& hostname) argument
36 PlatformBridge::prefetchDNS(hostname);
/external/webkit/Source/WebCore/platform/network/curl/
H A DCookieJarCurl.cpp76 void deleteCookiesForHostname(const String& hostname) argument
H A DDNSCurl.cpp33 void prefetchDNS(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/qt/
H A DDnsPrefetchHelper.cpp27 void prefetchDNS(const String& hostname) argument
31 dnsPrefetchHelper.lookup(QString(hostname));
H A DDnsPrefetchHelper.h38 void lookup(QString hostname) argument
40 if (hostname.isEmpty())
46 QHostInfo::lookupHost(hostname, this, SLOT(lookedUp(QHostInfo)));
/external/webkit/Source/WebCore/platform/network/soup/
H A DCookieJarSoup.cpp130 void deleteCookiesForHostname(const String& hostname) argument

Completed in 353 milliseconds

1234567