Searched refs:storageUuid (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/app/usage/
H A DStorageStatsManager.java67 public boolean isQuotaSupported(@NonNull UUID storageUuid) { argument
69 return mService.isQuotaSupported(convert(storageUuid), mContext.getOpPackageName());
83 public boolean isReservedSupported(@NonNull UUID storageUuid) { argument
85 return mService.isReservedSupported(convert(storageUuid), mContext.getOpPackageName());
102 * @param storageUuid the UUID of the storage volume you're interested in,
107 public @BytesLong long getTotalBytes(@NonNull UUID storageUuid) throws IOException { argument
109 return mService.getTotalBytes(convert(storageUuid), mContext.getOpPackageName());
134 * @param storageUuid the UUID of the storage volume you're interested in,
139 public @BytesLong long getFreeBytes(@NonNull UUID storageUuid) throws IOException { argument
141 return mService.getFreeBytes(convert(storageUuid), mContex
157 getCacheBytes(@onNull UUID storageUuid) argument
204 queryStatsForPackage(@onNull UUID storageUuid, @NonNull String packageName, @NonNull UserHandle user) argument
247 queryStatsForUid(@onNull UUID storageUuid, int uid) argument
285 queryStatsForUser(@onNull UUID storageUuid, @NonNull UserHandle user) argument
322 queryExternalStatsForUser(@onNull UUID storageUuid, @NonNull UserHandle user) argument
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java89 public UUID storageUuid; field in class:ExternalStorageProvider.RootInfo
159 final UUID storageUuid;
178 storageUuid = StorageManager.UUID_DEFAULT;
185 storageUuid = StorageManager.convert(privateVol.fsUuid);
191 storageUuid = null;
211 root.storageUuid = storageUuid;
446 if (root.storageUuid != null) {
450 .getFreeBytes(root.storageUuid);
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java146 * @see ApplicationInfo#storageUuid
1601 * @param storageUuid the UUID of the storage volume that you're interested
1609 public @BytesLong long getCacheQuotaBytes(@NonNull UUID storageUuid) throws IOException { argument
1612 return mStorageManager.getCacheQuotaBytes(convert(storageUuid), app.uid);
1636 * @param storageUuid the UUID of the storage volume that you're interested
1644 public @BytesLong long getCacheSizeBytes(@NonNull UUID storageUuid) throws IOException { argument
1647 return mStorageManager.getCacheSizeBytes(convert(storageUuid), app.uid);
1730 * @param storageUuid the UUID of the storage volume where you're
1742 public @BytesLong long getAllocatableBytes(@NonNull UUID storageUuid) argument
1744 return getAllocatableBytes(storageUuid,
1751 getAllocatableBytes(@onNull UUID storageUuid, @RequiresPermission @AllocateFlags int flags) argument
1791 allocateBytes(@onNull UUID storageUuid, @BytesLong long bytes) argument
1800 allocateBytes(@onNull UUID storageUuid, @BytesLong long bytes, @RequiresPermission @AllocateFlags int flags) argument
2000 convert(UUID storageUuid) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java702 public UUID storageUuid; field in class:ApplicationInfo
1420 storageUuid = orig.storageUuid;
1488 if (storageUuid != null) {
1490 dest.writeLong(storageUuid.getMostSignificantBits());
1491 dest.writeLong(storageUuid.getLeastSignificantBits());
1563 storageUuid = new UUID(source.readLong(), source.readLong());
1564 volumeUuid = StorageManager.convert(storageUuid);
H A DPackageParser.java6381 final UUID storageUuid = StorageManager.convert(volumeUuid);
6383 this.applicationInfo.storageUuid = storageUuid;
6388 childPackages.get(i).applicationInfo.storageUuid = storageUuid;
/frameworks/base/services/core/java/com/android/server/storage/
H A DAppCollector.java133 mStorageStatsManager.queryStatsForPackage(app.storageUuid,
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/applications/
H A DApplicationsStateRoboTest.java151 appInfo.storageUuid = UUID.randomUUID();
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DApplicationsState.java391 entry.info.storageUuid,
396 entry.info.storageUuid.toString(), entry.info.uid);
1098 mCurComputingSizeUuid = entry.info.storageUuid;

Completed in 218 milliseconds