Home
last modified time | relevance | path

Searched refs:storageUuid (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/android/app/usage/
DStorageStatsManager.java67 public boolean isQuotaSupported(@NonNull UUID storageUuid) { in isQuotaSupported() argument
69 return mService.isQuotaSupported(convert(storageUuid), mContext.getOpPackageName()); in isQuotaSupported()
83 public boolean isReservedSupported(@NonNull UUID storageUuid) { in isReservedSupported() argument
85 return mService.isReservedSupported(convert(storageUuid), mContext.getOpPackageName()); in isReservedSupported()
107 public @BytesLong long getTotalBytes(@NonNull UUID storageUuid) throws IOException { in getTotalBytes() argument
109 return mService.getTotalBytes(convert(storageUuid), mContext.getOpPackageName()); in getTotalBytes()
139 public @BytesLong long getFreeBytes(@NonNull UUID storageUuid) throws IOException { in getFreeBytes() argument
141 return mService.getFreeBytes(convert(storageUuid), mContext.getOpPackageName()); in getFreeBytes()
157 public @BytesLong long getCacheBytes(@NonNull UUID storageUuid) throws IOException { in getCacheBytes() argument
159 return mService.getCacheBytes(convert(storageUuid), mContext.getOpPackageName()); in getCacheBytes()
[all …]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DExternalStorageProvider.java90 public UUID storageUuid; field in ExternalStorageProvider.RootInfo
162 final UUID storageUuid; in updateVolumesLocked() local
181 storageUuid = StorageManager.UUID_DEFAULT; in updateVolumesLocked()
188 storageUuid = StorageManager.convert(privateVol.fsUuid); in updateVolumesLocked()
195 storageUuid = null; in updateVolumesLocked()
215 root.storageUuid = storageUuid; in updateVolumesLocked()
451 if (root.storageUuid != null) { in queryRoots()
455 .getFreeBytes(root.storageUuid); in queryRoots()
/frameworks/base/core/java/android/os/storage/
DStorageManager.java1905 public @BytesLong long getCacheQuotaBytes(@NonNull UUID storageUuid) throws IOException { in getCacheQuotaBytes() argument
1908 return mStorageManager.getCacheQuotaBytes(convert(storageUuid), app.uid); in getCacheQuotaBytes()
1940 public @BytesLong long getCacheSizeBytes(@NonNull UUID storageUuid) throws IOException { in getCacheSizeBytes() argument
1943 return mStorageManager.getCacheSizeBytes(convert(storageUuid), app.uid); in getCacheSizeBytes()
2038 public @BytesLong long getAllocatableBytes(@NonNull UUID storageUuid) in getAllocatableBytes() argument
2040 return getAllocatableBytes(storageUuid, 0); in getAllocatableBytes()
2047 public long getAllocatableBytes(@NonNull UUID storageUuid, in getAllocatableBytes() argument
2050 return mStorageManager.getAllocatableBytes(convert(storageUuid), flags, in getAllocatableBytes()
2087 public void allocateBytes(@NonNull UUID storageUuid, @BytesLong long bytes) in allocateBytes() argument
2089 allocateBytes(storageUuid, bytes, 0); in allocateBytes()
[all …]
/frameworks/base/core/java/android/content/pm/
DApplicationInfo.java796 public UUID storageUuid; field in ApplicationInfo
1553 storageUuid = orig.storageUuid; in ApplicationInfo()
1626 if (storageUuid != null) { in writeToParcel()
1628 dest.writeLong(storageUuid.getMostSignificantBits()); in writeToParcel()
1629 dest.writeLong(storageUuid.getLeastSignificantBits()); in writeToParcel()
1706 storageUuid = new UUID(source.readLong(), source.readLong()); in ApplicationInfo()
1707 volumeUuid = StorageManager.convert(storageUuid); in ApplicationInfo()
DPackageParser.java6628 final UUID storageUuid = StorageManager.convert(volumeUuid); in setApplicationVolumeUuid() local
6630 this.applicationInfo.storageUuid = storageUuid; in setApplicationVolumeUuid()
6635 childPackages.get(i).applicationInfo.storageUuid = storageUuid; in setApplicationVolumeUuid()
/frameworks/base/services/core/java/com/android/server/storage/
DAppCollector.java133 mStorageStatsManager.queryStatsForPackage(app.storageUuid, in handleMessage()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DApplicationsState.java513 entry.info.storageUuid, in requestSize()
518 entry.info.storageUuid.toString(), entry.info.uid); in requestSize()
1268 mCurComputingSizeUuid = entry.info.storageUuid; in handleMessage()
/frameworks/base/services/core/java/com/android/server/stats/
DStatsCompanionService.java2195 UUID storageUuid = appInfo.storageUuid; in pullAppsOnExternalStorageInfo() local
2196 if (storageUuid != null) { in pullAppsOnExternalStorageInfo()
2197 VolumeInfo volumeInfo = storage.findVolumeByUuid(appInfo.storageUuid.toString()); in pullAppsOnExternalStorageInfo()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/applications/
DApplicationsStateRoboTest.java229 appInfo.storageUuid = UUID.randomUUID(); in createApplicationInfo()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java2002 res.pkg.applicationInfo.storageUuid.toString()); in handlePackagePostInstall()
23602 VolumeInfo volume = storage.findVolumeByUuid(pkg.applicationInfo.storageUuid.toString());
/frameworks/base/api/
Dcurrent.txt11141 field public java.util.UUID storageUuid;