Home
last modified time | relevance | path

Searched refs:FLAG_USE_QUOTA (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/tests/PackageManagerServiceTests/server/src/com/android/server/pm/
DInstallerTest.java126 mInstaller.getAppSize(app.volumeUuid, packageNames, userId, Installer.FLAG_USE_QUOTA, in testGetAppSize()
148 mInstaller.getUserSize(null, UserHandle.USER_SYSTEM, Installer.FLAG_USE_QUOTA, in testGetUserSize()
166 Installer.FLAG_USE_QUOTA, appIds); in testGetExternalSize()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl164 const int FLAG_USE_QUOTA = 0x1000; field
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java112 public static final int FLAG_USE_QUOTA = IInstalld.FLAG_USE_QUOTA; field in Installer
/frameworks/native/cmds/installd/tests/
Dinstalld_service_test.cpp513 service->getAppSize(std::nullopt, packageNames, 0, InstalldNativeService::FLAG_USE_QUOTA, in TEST_F()
522 service->getAppSize(std::nullopt, packageNames, 0, InstalldNativeService::FLAG_USE_QUOTA, in TEST_F()
545 InstalldNativeService::FLAG_USE_QUOTA, in TEST_F()
/frameworks/native/cmds/installd/
DInstalldNativeService.cpp2627 flags &= ~FLAG_USE_QUOTA; in getAppSize()
2640 if (flags & FLAG_USE_QUOTA && appId >= AID_APP_START && !ownsExternalStorage(appId)) { in getAppSize()
2850 flags &= ~FLAG_USE_QUOTA; in getUserSize()
2853 if (flags & FLAG_USE_QUOTA) { in getUserSize()
2988 flags &= ~FLAG_USE_QUOTA; in getExternalSize()
2991 if (flags & FLAG_USE_QUOTA) { in getExternalSize()
3061 if (!(flags & FLAG_USE_QUOTA)) { in getExternalSize()
/frameworks/base/services/usage/java/com/android/server/usage/
DStorageStatsService.java570 return Installer.FLAG_USE_QUOTA; in getDefaultFlags()