/frameworks/base/core/java/android/app/usage/ |
D | StorageStatsManager.java | 67 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/ |
D | ExternalStorageProvider.java | 90 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/ |
D | StorageManager.java | 1905 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/ |
D | ApplicationInfo.java | 796 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()
|
D | PackageParser.java | 6628 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/ |
D | AppCollector.java | 133 mStorageStatsManager.queryStatsForPackage(app.storageUuid, in handleMessage()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/ |
D | ApplicationsState.java | 513 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/ |
D | StatsCompanionService.java | 2195 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/ |
D | ApplicationsStateRoboTest.java | 229 appInfo.storageUuid = UUID.randomUUID(); in createApplicationInfo()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 2002 res.pkg.applicationInfo.storageUuid.toString()); in handlePackagePostInstall() 23602 VolumeInfo volume = storage.findVolumeByUuid(pkg.applicationInfo.storageUuid.toString());
|
/frameworks/base/api/ |
D | current.txt | 11141 field public java.util.UUID storageUuid;
|