Lines Matching refs:hostname
61 protected final String hostname; field in HttpHost
85 public HttpHost(final String hostname, int port, final String scheme) { in HttpHost() argument
87 if (hostname == null) { in HttpHost()
90 this.hostname = hostname; in HttpHost()
91 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH); in HttpHost()
107 public HttpHost(final String hostname, int port) { in HttpHost() argument
108 this(hostname, port, null); in HttpHost()
116 public HttpHost(final String hostname) { in HttpHost() argument
117 this(hostname, -1, null); in HttpHost()
126 this(httphost.hostname, httphost.port, httphost.schemeName); in HttpHost()
135 return this.hostname; in getHostName()
165 buffer.append(this.hostname); in toURI()
181 buffer.append(this.hostname); in toHostString()