Searched refs:networkResponse (Results 1 – 7 of 7) sorted by relevance
24 public final NetworkResponse networkResponse; field in VolleyError28 networkResponse = null; in VolleyError()32 networkResponse = response; in VolleyError()37 networkResponse = null; in VolleyError()42 networkResponse = null; in VolleyError()47 networkResponse = null; in VolleyError()
24 public ServerError(NetworkResponse networkResponse) { in ServerError() argument25 super(networkResponse); in ServerError()
32 public NetworkError(NetworkResponse networkResponse) { in NetworkError() argument33 super(networkResponse); in NetworkError()
26 public ParseError(NetworkResponse networkResponse) { in ParseError() argument27 super(networkResponse); in ParseError()
112 NetworkResponse networkResponse = mNetwork.performRequest(request); in run() local117 if (networkResponse.notModified && request.hasHadResponseDelivered()) { in run()123 Response<?> response = request.parseNetworkResponse(networkResponse); in run()
147 NetworkResponse networkResponse = null; in performRequest()155 networkResponse = new NetworkResponse(statusCode, responseContents, in performRequest()160 request, new AuthFailureError(networkResponse)); in performRequest()163 throw new ServerError(networkResponse); in performRequest()166 throw new NetworkError(networkResponse); in performRequest()
125 private void verifyResize(NetworkResponse networkResponse, int maxWidth, int maxHeight, in verifyResize() argument129 Response<Bitmap> response = request.parseNetworkResponse(networkResponse); in verifyResize()