Home
last modified time | relevance | path

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

/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
DAutomaticStorageManagementJobServiceTest.java100 when(mStorageVolumeProvider.getFreeBytes( in setUp()
185 when(mStorageVolumeProvider.getFreeBytes( in testJobDoesntRunIfStorageNotFull()
195 when(mStorageVolumeProvider.getFreeBytes( in testJobOnlyRunsIfFreeStorageIsUnder15Percent()
201 when(mStorageVolumeProvider.getFreeBytes( in testJobOnlyRunsIfFreeStorageIsUnder15Percent()
225 when(mStorageVolumeProvider.getFreeBytes( in testNonPrivateDrivesIgnoredForFreeSpaceCalculation()
232 when(mStorageVolumeProvider.getFreeBytes( in testNonPrivateDrivesIgnoredForFreeSpaceCalculation()
248 when(mStorageVolumeProvider.getFreeBytes( in testMultiplePrivateVolumesCountedForASMActivationThreshold()
256 when(mStorageVolumeProvider.getFreeBytes( in testMultiplePrivateVolumesCountedForASMActivationThreshold()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/storage/
DStorageSettingsManagerTest.java89 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in volumeSizeCallback_onLoadFinished_listenerOnSizeCalculatedCalled()
114 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in appsStorageResult_unregisterListener_onlyOneListenerOnDataLoadedCalled()
134 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in onReceivedSizes_storageResultNotLoaded_noListenersCalled()
155 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in onReceivedSizes_volumeSizeNotLoaded_noListenersCalled()
DVolumeSizesLoaderTest.java53 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in getVolumeSize_getsValidSizes()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DVolumeSizesLoader.java58 long privateFreeBytes = mVolumeProvider.getFreeBytes(mStats, mVolume); in getVolumeSize()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DVolumeSizesLoaderTest.java25 when(storageVolumeProvider.getFreeBytes(any(), any())).thenReturn(1000L); in getVolumeSize_getsValidSizes()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DVolumeSizesLoader.java66 long privateFreeBytes = storageVolumeProvider.getFreeBytes(stats, info); in getVolumeSize()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DCacheStorageUsageInfo.java87 public long getFreeBytes() { in getFreeBytes() method in CacheStorageUsageInfo
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/storage/
DVolumeSizesLoader.java66 long privateFreeBytes = storageVolumeProvider.getFreeBytes(stats, info); in getVolumeSize()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
DTopLevelStoragePreferenceControllerTest.java80 .getFreeBytes(nullable(StorageStatsManager.class), nullable(VolumeInfo.class))) in updateSummary_shouldDisplayUsedPercentAndFreeSpace()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageVolumePreference.java87 freeBytes = stats.getFreeBytes(volume.getFsUuid()); in StorageVolumePreference()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/
DStorageVolumePreference.java87 freeBytes = stats.getFreeBytes(volume.getFsUuid()); in StorageVolumePreference()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DManageCachePage.java371 long freeBytes = mCacheStorageInfo.getFreeBytes(); in refreshCacheStorageInfo()