Home
last modified time | relevance | path

Searched refs:phrasePos (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DHttpURLConnection.java718 int phrasePos = statusLine.indexOf(' ', codePos+1); in getResponseCode() local
719 if (phrasePos > 0 && phrasePos < statusLine.length()) { in getResponseCode()
720 responseMessage = statusLine.substring(phrasePos+1); in getResponseCode()
725 if (phrasePos < 0) in getResponseCode()
726 phrasePos = statusLine.length(); in getResponseCode()
730 (statusLine.substring(codePos+1, phrasePos)); in getResponseCode()