Home
last modified time | relevance | path

Searched refs:isQuotaSupported (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/app/usage/
DStorageStatsManager.java67 public boolean isQuotaSupported(@NonNull UUID storageUuid) { in isQuotaSupported() method in StorageStatsManager
69 return mService.isQuotaSupported(convert(storageUuid), mContext.getOpPackageName()); in isQuotaSupported()
77 public boolean isQuotaSupported(String uuid) { in isQuotaSupported() method in StorageStatsManager
78 return isQuotaSupported(convert(uuid)); in isQuotaSupported()
DIStorageStatsManager.aidl24 boolean isQuotaSupported(String volumeUuid, String callingPackage); in isQuotaSupported() method
/frameworks/base/services/usage/java/com/android/server/usage/
DStorageStatsService.java157 public boolean isQuotaSupported(String volumeUuid, String callingPackage) { in isQuotaSupported() method in StorageStatsService
161 return mInstaller.isQuotaSupported(volumeUuid); in isQuotaSupported()
210 if (isQuotaSupported(volumeUuid, PLATFORM_PACKAGE_NAME)) { in getFreeBytes()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl100 boolean isQuotaSupported(@nullable @utf8InCpp String uuid); in isQuotaSupported() method
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java562 public boolean isQuotaSupported(String volumeUuid) throws InstallerException { in isQuotaSupported() method in Installer
565 return mInstalld.isQuotaSupported(volumeUuid); in isQuotaSupported()
/frameworks/native/cmds/installd/
DInstalldNativeService.h137 binder::Status isQuotaSupported(const std::unique_ptr<std::string>& volumeUuid,
DInstalldNativeService.cpp2658 binder::Status InstalldNativeService::isQuotaSupported( in isQuotaSupported() function in android::installd::InstalldNativeService
/frameworks/base/config/
Dhiddenapi-removed-dex.txt50 Landroid/app/usage/StorageStatsManager;->isQuotaSupported(Ljava/lang/String;)Z
Dboot-image-profile.txt1174 HPLandroid/app/usage/StorageStatsManager;->isQuotaSupported(Ljava/lang/String;)Z
1175 HPLandroid/app/usage/StorageStatsManager;->isQuotaSupported(Ljava/util/UUID;)Z
4255 HPLandroid/os/IInstalld$Stub$Proxy;->isQuotaSupported(Ljava/lang/String;)Z
16304 HSPLandroid/app/usage/IStorageStatsManager;->isQuotaSupported(Ljava/lang/String;Ljava/lang/String;)Z
27654 HSPLandroid/os/IInstalld;->isQuotaSupported(Ljava/lang/String;)Z
Dhiddenapi-public-dex.txt4639 Landroid/app/usage/StorageStatsManager;->isQuotaSupported(Ljava/util/UUID;)Z
/frameworks/base/api/
Dremoved.txt114 method public deprecated boolean isQuotaSupported(java.lang.String);
Dtest-current.txt212 method public boolean isQuotaSupported(java.util.UUID);
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java2916 if (stats.isQuotaSupported(volumeUuid)) { in getAllocatableBytes()