Lines Matching refs:port
68 protected final int port; field in HttpHost
85 public HttpHost(final String hostname, int port, final String scheme) { in HttpHost() argument
97 this.port = port; in HttpHost()
107 public HttpHost(final String hostname, int port) { in HttpHost() argument
108 this(hostname, port, null); in HttpHost()
126 this(httphost.hostname, httphost.port, httphost.schemeName); in HttpHost()
144 return this.port; in getPort()
166 if (this.port != -1) { in toURI()
168 buffer.append(Integer.toString(this.port)); in toURI()
182 if (this.port != -1) { in toHostString()
184 buffer.append(Integer.toString(this.port)); in toHostString()
201 && this.port == that.port in equals()
214 hash = LangUtils.hashCode(hash, this.port); in hashCode()