HomeSort by relevance Sort by last modified time
    Searched refs:StopRequestException (Results 1 - 4 of 4) sorted by null

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StopRequestException.java 28 class StopRequestException extends Exception {
31 public StopRequestException(int finalStatus, String message) {
36 public StopRequestException(int finalStatus, Throwable t) {
41 public StopRequestException(int finalStatus, String message, Throwable t) {
50 public static StopRequestException throwUnhandledHttpError(int code, String message)
51 throws StopRequestException {
54 throw new StopRequestException(code, error);
56 throw new StopRequestException(STATUS_UNHANDLED_REDIRECT, error);
58 throw new StopRequestException(STATUS_UNHANDLED_HTTP_CODE, error);
DownloadThread.java 217 throw new StopRequestException(STATUS_BAD_REQUEST, e);
224 } catch (StopRequestException error) {
296 private void executeDownload(State state) throws StopRequestException {
324 throw new StopRequestException(
333 throw new StopRequestException(
352 throw new StopRequestException(
357 throw new StopRequestException(
361 throw new StopRequestException(
365 StopRequestException.throwUnhandledHttpError(
370 throw new StopRequestException(STATUS_HTTP_DATA_ERROR, e)
    [all...]
StorageManager.java 120 throws StopRequestException {
129 void verifySpace(int destination, String path, long length) throws StopRequestException {
174 throws StopRequestException {
181 throw new StopRequestException(Downloads.Impl.STATUS_DEVICE_NOT_FOUND_ERROR,
208 throw new StopRequestException(Downloads.Impl.STATUS_INSUFFICIENT_SPACE_ERROR,
230 throw new StopRequestException(Downloads.Impl.STATUS_INSUFFICIENT_SPACE_ERROR,
269 throws StopRequestException {
282 throw new StopRequestException(Downloads.Impl.STATUS_FILE_ERROR,
Helpers.java 81 StorageManager storageManager) throws StopRequestException {
104 throws StopRequestException {
146 throw new StopRequestException(Downloads.Impl.STATUS_FILE_ERROR,
301 String extension, boolean recoveryDir) throws StopRequestException {
339 throw new StopRequestException(Downloads.Impl.STATUS_FILE_ERROR,

Completed in 499 milliseconds