Home | History | Annotate | Download | only in utils

Lines Matching refs:p_port

272    * @param p_port the URI port (may be -1 for "unspecified"; cannot
287 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment)
304 if (p_port != -1)
328 setPort(p_port);
1121 * @param p_port the port number for this URI
1123 * @throws MalformedURIException if p_port is not -1 and not a
1126 public void setPort(int p_port) throws MalformedURIException
1129 if (p_port >= 0 && p_port <= 65535)
1137 else if (p_port != -1)
1142 m_port = p_port;