Home | History | Annotate | Download | only in utils

Lines Matching refs:portStr

707         String portStr = p_uriSpec.substring(start, index);
709 if (portStr.length() > 0)
711 for (int i = 0; i < portStr.length(); i++)
713 if (!isDigit(portStr.charAt(i)))
716 portStr + " is invalid. Port should only contain digits!");
722 port = Integer.parseInt(portStr);