HomeSort by relevance Sort by last modified time
    Searched refs:cacheQuota (Results 1 - 8 of 8) sorted by null

  /frameworks/native/cmds/installd/
CacheTracker.h 57 int64_t cacheQuota;
CacheTracker.cpp 37 cacheUsed(0), cacheQuota(0), mUserId(userId), mAppId(appId), mQuotaDevice(quotaDevice),
46 multiuser_get_uid(mUserId, mAppId), cacheUsed, cacheQuota, getCacheRatio());
205 if (cacheQuota == 0) {
208 return (cacheUsed * 10000) / cacheQuota;
InstalldNativeService.h 75 int32_t userId, int32_t appId, int64_t cacheQuota);
InstalldNativeService.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
StorageAsyncLoader.java 110 final long cacheQuota = mStatsManager.getCacheQuotaBytes(mUuid, app.uid);
117 if (cacheQuota < cacheBytes) {
118 blamedSize = blamedSize - cacheBytes + cacheQuota;
  /frameworks/native/cmds/installd/binder/android/os/
IInstalld.aidl 43 void setAppQuota(@nullable @utf8InCpp String uuid, int userId, int appId, long cacheQuota);
  /frameworks/base/services/core/java/com/android/server/pm/
Installer.java 282 public void setAppQuota(String uuid, int userId, int appId, long cacheQuota)
286 mInstalld.setAppQuota(uuid, userId, appId, cacheQuota);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
ApplicationsState.java 394 final long cacheQuota =
400 legacy.cacheSize = Math.min(stats.getCacheBytes(), cacheQuota);
    [all...]

Completed in 105 milliseconds