Home
last modified time | relevance | path

Searched refs:mStorage (Results 1 – 12 of 12) sorted by relevance

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/clipping/
DClipStorageTest.java58 private ClipStorage mStorage; field in ClipStorageTest
66 mStorage = new ClipStorage(clipDir, mPref); in setUp()
71 mSlot = mStorage.claimStorageSlot(); in setUp()
89 File copy = mStorage.getFile(mSlot); in testRead()
90 try(ClipStorageReader provider = mStorage.createReader(copy)) { in testRead()
100 int firstSlot = mStorage.claimStorageSlot(); in testClaimStorageSlot_NoAvailableSlot()
102 mStorage.getFile(firstSlot); in testClaimStorageSlot_NoAvailableSlot()
104 int slot = mStorage.claimStorageSlot(); in testClaimStorageSlot_NoAvailableSlot()
106 mStorage.getFile(slot); in testClaimStorageSlot_NoAvailableSlot()
109 assertEquals(firstSlot, mStorage.claimStorageSlot()); in testClaimStorageSlot_NoAvailableSlot()
[all …]
DUrisSupplierTest.java58 private ClipStorage mStorage; field in UrisSupplierTest
66 mStorage = new ClipStorage(folder.getRoot(), mPref); in setUp()
92 assertIterableEquals(SHORT_URI_LIST, uris.getUris(mStorage)); in testGetDocsEquals_shortList()
99 assertIterableEquals(LONG_URI_LIST, uris.getUris(mStorage)); in testGetDocsEquals_longList()
117 return UrisSupplier.create(SHORT_URI_LIST, mStorage); in createWithShortList()
122 UrisSupplier.create(LONG_URI_LIST, mStorage); in createWithLongList()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DStubProvider.java88 private final Map<String, StubDocument> mStorage = new HashMap<>(); field in StubProvider
114 mStorage.clear(); in clearCacheAndBuildRoots()
137 mStorage.put(rootInfo.document.documentId, rootInfo.document); in clearCacheAndBuildRoots()
174 final StubDocument file = mStorage.get(documentId); in queryDocument()
184 final StubDocument parentDocument = mStorage.get(parentDocId); in isChildDocument()
185 final StubDocument childDocument = mStorage.get(docId); in isChildDocument()
192 StubDocument parent = mStorage.get(parentId); in createDocument()
196 mStorage.put(document.documentId, document); in createDocument()
209 final StubDocument document = mStorage.get(documentId); in deleteDocument()
215 mStorage.remove(documentId); in deleteDocument()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DTransitionStore.java22 private HashMap<Object, Object> mStorage = new HashMap<Object, Object>(); field in TransitionStore
25 mStorage.put(key, value); in put()
29 mStorage.put(key, get(key, valueIfNull)); in putIfNotPresent()
34 return (T) mStorage.get(key); in get()
39 T value = (T) mStorage.get(key); in get()
44 mStorage.clear(); in clear()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageWizardBase.java45 protected StorageManager mStorage; field in StorageWizardBase
57 mStorage = getSystemService(StorageManager.class); in onCreate()
61 mVolume = mStorage.findVolumeById(volumeId); in onCreate()
66 mDisk = mStorage.findDiskById(diskId); in onCreate()
74 mStorage.registerListener(mStorageListener); in onCreate()
133 mStorage.unregisterListener(mStorageListener); in onDestroy()
205 final List<VolumeInfo> vols = mStorage.getVolumes(); in findFirstVolume()
DStorageWizardMigrateConfirm.java54 final String sourceDescrip = mStorage.getBestVolumeDescription(sourceVol); in onCreate()
55 final String targetDescrip = mStorage.getBestVolumeDescription(mVolume); in onCreate()
DStorageWizardFormatProgress.java96 final StorageManager storage = mActivity.mStorage; in doInBackground()
248 mStorage.forgetVolume(forgetUuid); in onFormatFinished()
DStorageWizardMoveConfirm.java58 final String volumeName = mStorage.getBestVolumeDescription(mVolume); in onCreate()
DStorageWizardMigrateProgress.java51 final String descrip = mStorage.getBestVolumeDescription(mVolume); in onCreate()
DStorageWizardMoveProgress.java47 final String volumeName = mStorage.getBestVolumeDescription(mVolume); in onCreate()
DStorageWizardInit.java103 mStorage.setVolumeInited(mVolume.getFsUuid(), true); in onNavigateNext()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadThread.java121 private final StorageManager mStorage; field in DownloadThread
250 mStorage = mContext.getSystemService(StorageManager.class); in DownloadThread()
580 if (mInfoDelta.mTotalBytes > 0 && mStorage.isAllocationSupported(outFd)) { in transferData()
581 mStorage.allocateBytes(outFd, mInfoDelta.mTotalBytes); in transferData()