Home
last modified time | relevance | path

Searched refs:hostName (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
DProxyServer.h53 ProxyServer(Type type, const String& hostName, int port) in ProxyServer() argument
55 , m_hostName(hostName) in ProxyServer()
61 const String& hostName() const { return m_hostName; } in hostName() function
DProxyServer.cpp50 ASSERT(!proxyServer.hostName().isNull()); in appendProxyServerString()
51 builder.append(proxyServer.hostName()); in appendProxyServerString()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DInetAddressThreadTest.java86 String hostName = ia.getHostName(); in run() local
92 if (!hostName.startsWith(correctName)) { in run()
97 + hostName in run()
/external/nist-sip/java/gov/nist/core/
DHost.java94 public Host(String hostName) throws IllegalArgumentException { in Host() argument
95 if (hostName == null) in Host()
101 setHost(hostName, IPV4ADDRESS); in Host()
/external/apache-http/src/org/apache/http/conn/ssl/
DAbstractVerifier.java148 String hostName = host.trim().toLowerCase(Locale.ENGLISH); in verify() local
171 match = hostName.endsWith(cn.substring(1)); in verify()
175 match = countDots(hostName) == countDots(cn); in verify()
178 match = hostName.equals(cn); in verify()
/external/webkit/Source/WebCore/loader/
DResourceLoadScheduler.cpp59 String hostName = url.host(); in hostForURL() local
60 HostInformation* host = m_hosts.get(hostName); in hostForURL()
62 host = new HostInformation(hostName, maxRequestsInFlightPerHost); in hostForURL()
63 m_hosts.add(hostName, host); in hostForURL()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DHopImpl.java74 public HopImpl(String hostName, int portNumber, String trans) { in HopImpl() argument
75 host = hostName; in HopImpl()
/external/apache-http/src/org/apache/http/client/protocol/
DRequestAddCookies.java134 String hostName = targetHost.getHostName(); in process() local
141 hostName, in process()
/external/webkit/Tools/WebKitLauncher/
DWebKitNightlyEnablerSparkle.m48 NSString *hostName = objc_msgSend(host, @selector(name));
49 … stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(upd…
50 …[NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @sele…
/external/webkit/Source/WebCore/platform/network/qt/
DProxyServerQt.cpp66 servers.append(ProxyServer(proxyType, proxy.hostName(), proxy.port())); in proxyServersForURL()
/external/webkit/Source/WebCore/websockets/
DWebSocketHandshake.cpp74 static String hostName(const KURL& url, bool secure) in hostName() function
222 builder.append(hostName(m_url, m_secure)); in clientLocation()
239 fields.append("Host: " + hostName(m_url, m_secure)); in clientHandshakeMessage()
283 request.addHeaderField("Host", hostName(m_url, m_secure)); in clientHandshakeRequest()
/external/webkit/Source/WebCore/
DChangeLog-2010-05-241766 (WebCore::hostName): Added.
1774 use hostName.
DChangeLog-2010-12-0641358 (WebCore::ProxyServer::hostName):