Searched refs:finalStatus (Results 1 - 2 of 2) sorted by relevance

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DStopRequestException.java31 public StopRequestException(int finalStatus, String message) { argument
33 mFinalStatus = finalStatus;
36 public StopRequestException(int finalStatus, Throwable t) { argument
38 mFinalStatus = finalStatus;
41 public StopRequestException(int finalStatus, String message, Throwable t) { argument
43 mFinalStatus = finalStatus;
H A DDownloadThread.java184 int finalStatus = Downloads.Impl.STATUS_UNKNOWN_ERROR;
223 finalStatus = Downloads.Impl.STATUS_SUCCESS;
232 finalStatus = error.getFinalStatus();
236 if (finalStatus == STATUS_WAITING_TO_RETRY) {
241 if (isStatusRetryable(finalStatus)) {
253 finalStatus = STATUS_WAITING_TO_RETRY;
256 finalStatus = STATUS_WAITING_FOR_NETWORK;
266 finalStatus = Downloads.Impl.STATUS_UNKNOWN_ERROR;
269 if (finalStatus == STATUS_SUCCESS) {
276 cleanupDestination(state, finalStatus);
502 cleanupDestination(State state, int finalStatus) argument
843 notifyDownloadCompleted( State state, int finalStatus, String errorMsg, int numFailed) argument
851 notifyThroughDatabase( State state, int finalStatus, String errorMsg, int numFailed) argument
[all...]

Completed in 159 milliseconds