Searched defs:responseCode (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DHttpRetryException.java29 private int responseCode; field in class:HttpRetryException
44 responseCode = code;
61 responseCode = code;
88 public int responseCode() { method in class:HttpRetryException
89 return responseCode;
H A DHttpURLConnection.java292 protected int responseCode = -1; field in class:HttpURLConnection
626 responseCode = Integer.parseInt(response.substring(mark, last));
630 return responseCode;
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java733 final int responseCode)
735 return doInteraction(clientConnection, serverSocket, responseCode, false);
747 final int responseCode,
755 ServerWork server = new ServerWork(serverSocket, responseCode, doAuthentication);
884 private final int responseCode; field in class:HttpsURLConnectionTest.ServerWork
892 * @param responseCode the response code to be sent to the client
897 int responseCode,
900 this.responseCode = responseCode;
1037 os.write(("HTTP/1.1 " + responseCode
731 doInteraction(final HttpsURLConnection clientConnection, final ServerSocket serverSocket, final int responseCode) argument
745 doInteraction(final HttpsURLConnection clientConnection, final ServerSocket serverSocket, final int responseCode, final boolean doAuthentication) argument
896 ServerWork(ServerSocket serverSocket, int responseCode, boolean needProxyAuthentication) argument
[all...]

Completed in 53 milliseconds