Home | History | Annotate | Download | only in utils

Lines Matching refs:p_port

269    * @param p_port the URI port (may be -1 for "unspecified"; cannot
284 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment)
301 if (p_port != -1)
325 setPort(p_port);
1141 * @param p_port the port number for this URI
1143 * @throws MalformedURIException if p_port is not -1 and not a
1146 public void setPort(int p_port) throws MalformedURIException
1149 if (p_port >= 0 && p_port <= 65535)
1157 else if (p_port != -1)
1162 m_port = p_port;