Home | History | Annotate | Download | only in core

Lines Matching defs:host

43  * Parser for host names.
163 lexer.getBuffer() + ": Illegal Host name ",
171 public Host host() throws ParseException {
173 dbg_enter("host");
201 lexer.getBuffer() + ": Missing host name",
204 return new Host(hostname);
207 dbg_leave("host");
218 * @return true if the host part of <tt>uriHeader</tt> could be an IPv6
223 // approximately detect the end the host part.
240 String host = uriHeader.substring(0, hostEnd);
242 int firstColonIndex = host.indexOf(Lexer.COLON);
247 int secondColonIndex = host.indexOf(Lexer.COLON, firstColonIndex + 1);
255 * Parses a host:port string
265 Host host = this.host();
267 hp.setHost(host);