Lines Matching refs:hostname
56 protected final String hostname; field in HttpHost
80 public HttpHost(final String hostname, int port, final String scheme) { in HttpHost() argument
82 if (hostname == null) { in HttpHost()
85 this.hostname = hostname; in HttpHost()
86 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH); in HttpHost()
102 public HttpHost(final String hostname, int port) { in HttpHost() argument
103 this(hostname, port, null); in HttpHost()
111 public HttpHost(final String hostname) { in HttpHost() argument
112 this(hostname, -1, null); in HttpHost()
121 this(httphost.hostname, httphost.port, httphost.schemeName); in HttpHost()
130 return this.hostname; in getHostName()
160 buffer.append(this.hostname); in toURI()
176 buffer.append(this.hostname); in toHostString()