Home
last modified time | relevance | path

Searched refs:DownloadsDeletionType (Results 1 – 6 of 6) sorted by relevance

/packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
DDeletionHelperSettingsTest.java83 DownloadsDeletionType downloadsDeletionType = mock(DownloadsDeletionType.class); in downloadsNotDeletedInNoThresholdMode()
113 DownloadsDeletionType downloadsDeletionType = mock(DownloadsDeletionType.class); in requestingSpecificBytesToClearSetsOkResultCodeOnSufficientClear()
132 DownloadsDeletionType downloadsDeletionType = mock(DownloadsDeletionType.class); in requestingSpecificBytesToClearSetsNegativeResultCodeOnSufficientClear()
151 DownloadsDeletionType downloadsDeletionType = mock(DownloadsDeletionType.class); in requestingSpecificBytesToClearSetsNegativeResultCodeOnNoClear()
DDownloadsDeletionPreferenceGroupTest.java50 private DownloadsDeletionType mType;
60 mType = new DownloadsDeletionType(RuntimeEnvironment.application, new String[0]); in setUp()
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
DDownloadsDeletionTypeTest.java30 import com.android.storagemanager.deletionhelper.DownloadsDeletionType;
45 private DownloadsDeletionType mDeletion;
50 mDeletion = new DownloadsDeletionType(RuntimeEnvironment.application, null); in setUp()
62 mDeletion = new DownloadsDeletionType(RuntimeEnvironment.application, filePaths); in testInitializeWithUncheckedFiles()
134 mDeletion = new DownloadsDeletionType(RuntimeEnvironment.application, in testSaveAndRestoreRemembersUncheckedFiles()
135 savedBundle.getStringArray(DownloadsDeletionType.EXTRA_UNCHECKED_DOWNLOADS)); in testSaveAndRestoreRemembersUncheckedFiles()
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
DDeletionHelperSettings.java72 private DownloadsDeletionType mDownloadsDeletion;
184 DownloadsDeletionType.EXTRA_UNCHECKED_DOWNLOADS); in onActivityCreated()
188 mDownloadsDeletion = new DownloadsDeletionType(getActivity(), uncheckedFiles); in onActivityCreated()
354 void setDownloadsDeletionType(DownloadsDeletionType downloadsDeletion) { in setDownloadsDeletionType()
DDownloadsDeletionType.java43 public class DownloadsDeletionType implements DeletionType, LoaderCallbacks<DownloadsResult> { class
54 public DownloadsDeletionType(Context context, String[] uncheckedFiles) { in DownloadsDeletionType() method in DownloadsDeletionType
DDownloadsDeletionPreferenceGroup.java43 private DownloadsDeletionType mDeletionType;
67 public void registerDeletionService(DownloadsDeletionType type) { in registerDeletionService()