/frameworks/base/core/java/android/app/usage/ |
D | StorageStatsManager.java | 72 public boolean isQuotaSupported(@NonNull UUID storageUuid) { in isQuotaSupported() argument 74 return mService.isQuotaSupported(convert(storageUuid), mContext.getOpPackageName()); in isQuotaSupported() 88 public boolean isReservedSupported(@NonNull UUID storageUuid) { in isReservedSupported() argument 90 return mService.isReservedSupported(convert(storageUuid), mContext.getOpPackageName()); in isReservedSupported() 112 public @BytesLong long getTotalBytes(@NonNull UUID storageUuid) throws IOException { in getTotalBytes() argument 114 return mService.getTotalBytes(convert(storageUuid), mContext.getOpPackageName()); in getTotalBytes() 144 public @BytesLong long getFreeBytes(@NonNull UUID storageUuid) throws IOException { in getFreeBytes() argument 146 return mService.getFreeBytes(convert(storageUuid), mContext.getOpPackageName()); in getFreeBytes() 162 public @BytesLong long getCacheBytes(@NonNull UUID storageUuid) throws IOException { in getCacheBytes() argument 164 return mService.getCacheBytes(convert(storageUuid), mContext.getOpPackageName()); in getCacheBytes() [all …]
|
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
D | ExternalStorageProvider.java | 92 public UUID storageUuid; field in ExternalStorageProvider.RootInfo 174 final UUID storageUuid; in updateVolumesLocked() local 193 storageUuid = StorageManager.UUID_DEFAULT; in updateVolumesLocked() 200 storageUuid = StorageManager.convert(privateVol.fsUuid); in updateVolumesLocked() 206 storageUuid = null; in updateVolumesLocked() 226 root.storageUuid = storageUuid; in updateVolumesLocked() 511 if (root.storageUuid != null) { in queryRoots() 515 .getFreeBytes(root.storageUuid); in queryRoots()
|
/frameworks/base/core/java/android/os/storage/ |
D | StorageManager.java | 2080 public @BytesLong long getCacheQuotaBytes(@NonNull UUID storageUuid) throws IOException { in getCacheQuotaBytes() argument 2083 return mStorageManager.getCacheQuotaBytes(convert(storageUuid), app.uid); in getCacheQuotaBytes() 2115 public @BytesLong long getCacheSizeBytes(@NonNull UUID storageUuid) throws IOException { in getCacheSizeBytes() argument 2118 return mStorageManager.getCacheSizeBytes(convert(storageUuid), app.uid); in getCacheSizeBytes() 2279 public @BytesLong long getAllocatableBytes(@NonNull UUID storageUuid) in getAllocatableBytes() argument 2281 return getAllocatableBytes(storageUuid, 0); in getAllocatableBytes() 2288 public long getAllocatableBytes(@NonNull UUID storageUuid, in getAllocatableBytes() argument 2291 return mStorageManager.getAllocatableBytes(convert(storageUuid), flags, in getAllocatableBytes() 2328 public void allocateBytes(@NonNull UUID storageUuid, @BytesLong long bytes) in allocateBytes() argument 2330 allocateBytes(storageUuid, bytes, 0); in allocateBytes() [all …]
|
D | StorageVolume.java | 585 public Builder setStorageUuid(@Nullable UUID storageUuid) { in setStorageUuid() argument 586 mStorageUuid = storageUuid; in setStorageUuid()
|
/frameworks/base/core/java/android/content/pm/ |
D | ApplicationInfo.java | 898 public UUID storageUuid; field in ApplicationInfo 1815 storageUuid = orig.storageUuid; in ApplicationInfo() 1899 if (storageUuid != null) { in writeToParcel() 1901 dest.writeLong(storageUuid.getMostSignificantBits()); in writeToParcel() 1902 dest.writeLong(storageUuid.getLeastSignificantBits()); in writeToParcel() 1990 storageUuid = new UUID(source.readLong(), source.readLong()); in ApplicationInfo() 1991 volumeUuid = StorageManager.convert(storageUuid); in ApplicationInfo()
|
D | PackageParser.java | 6925 final UUID storageUuid = StorageManager.convert(volumeUuid); in setApplicationVolumeUuid() local 6927 this.applicationInfo.storageUuid = storageUuid; in setApplicationVolumeUuid() 6932 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/PackageInstaller/src/com/android/packageinstaller/handheld/ |
D | UninstallAlertDialogFragment.java | 68 getContext().getPackageManager().getApplicationInfo(pkg, 0).storageUuid, in getAppDataSizeForUser()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/ |
D | ApplicationsState.java | 528 entry.info.storageUuid, in requestSize() 533 entry.info.storageUuid.toString(), entry.info.uid); in requestSize() 1287 mCurComputingSizeUuid = entry.info.storageUuid; in handleMessage()
|
/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/stats/pull/ |
D | StatsPullAtomService.java | 3480 UUID storageUuid = appInfo.storageUuid; 3481 if (storageUuid == null) { 3486 appInfo.storageUuid.toString());
|
/frameworks/base/core/java/android/content/pm/parsing/ |
D | ParsingPackageImpl.java | 1083 appInfo.storageUuid = mStorageUuid;
|
/frameworks/base/core/api/ |
D | current.txt | 12029 field public java.util.UUID storageUuid;
|