Home
last modified time | relevance | path

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

/external/downloader/src/main/java/com/google/android/downloader/
DPlatformUrlEngine.java142 int httpResponseCode = getResponseCode(urlConnection); in send() local
149 new PlatformUrlResponse(urlConnection, httpResponseCode); in send()
169 private final int httpResponseCode; field in PlatformUrlResponse
172 PlatformUrlResponse(URLConnection urlConnection, int httpResponseCode) { in PlatformUrlResponse() argument
174 this.httpResponseCode = httpResponseCode; in PlatformUrlResponse()
187 return httpResponseCode; in getResponseCode()
263 int httpResponseCode = httpUrlConnection.getResponseCode();
264 if (httpResponseCode >= HttpURLConnection.HTTP_BAD_REQUEST) {
272 httpResponseCode, responseHeaders, responseMessage));
274 return httpResponseCode;
DErrorDetails.java93 int httpResponseCode, in createFromHttpErrorResponse() argument
98 .setRetryableAsIs(isRetryableHttpError(httpResponseCode, httpResponseHeaders)) in createFromHttpErrorResponse()
99 .setHttpStatusCode(httpResponseCode) in createFromHttpErrorResponse()
100 .setInternalErrorCode(httpResponseCode) in createFromHttpErrorResponse()