Home
last modified time | relevance | path

Searched refs:AID_APP_START (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/os/
DUserHandle.java146 public static final int AID_APP_START = android.os.Process.FIRST_APPLICATION_UID; field in UserHandle
364 if (appId >= AID_APP_START && appId <= AID_APP_END) { in getSharedAppGid()
365 return (appId - AID_APP_START) + AID_SHARED_GID_START; in getSharedAppGid()
366 } else if (appId >= AID_ROOT && appId <= AID_APP_START) { in getSharedAppGid()
394 if (appId >= AID_APP_START && appId <= AID_APP_END) { in getCacheAppGid()
395 return getUid(userId, (appId - AID_APP_START) + AID_CACHE_GID_START); in getCacheAppGid()
/frameworks/av/media/utils/include/mediautils/
DServiceUtilities.h48 return multiuser_get_app_id(uid) < AID_APP_START; in isServiceUid()
/frameworks/native/services/surfaceflinger/tests/
DLayerTypeTransaction_test.cpp176 UIDFaker f(AID_APP_START); in TEST_P()
DScreenCapture_test.cpp89 UIDFaker f(AID_APP_START); in TEST_F()
561 UIDFaker f(AID_APP_START); in TEST_F()
/frameworks/native/cmds/installd/
DInstalldNativeService.cpp1396 + AID_APP_START; in freeCache()
1627 long obbProjectId = uid - AID_APP_START + PROJECT_ID_EXT_OBB_START; in collectQuotaStats()
1708 } else if (exclude_apps && (user_uid >= AID_APP_START && user_uid <= AID_APP_END)) { in collectManualStatsForUser()
1807 if (flags & FLAG_USE_QUOTA && appId >= AID_APP_START) { in getAppSize()
1952 if (appId >= AID_APP_START) { in getExternalSizesForUserWithQuota()
1955 long projectId = uid - AID_APP_START + PROJECT_ID_EXT_DATA_START; in getExternalSizesForUserWithQuota()
1959 long cacheProjectId = uid - AID_APP_START + PROJECT_ID_EXT_CACHE_START; in getExternalSizesForUserWithQuota()
1963 long obbProjectId = uid - AID_APP_START + PROJECT_ID_EXT_OBB_START; in getExternalSizesForUserWithQuota()
2044 if (appId >= AID_APP_START) { in getUserSize()
2154 if (appId >= AID_APP_START) { in getExternalSize()
Dutils.cpp402 if (exclude_apps && ((user_uid >= AID_APP_START && user_uid <= AID_APP_END) in calculate_tree_size()
1088 long projectId = uid - AID_APP_START + PROJECT_ID_EXT_DATA_START; in get_occupied_app_space_external()
1105 long projectId = uid - AID_APP_START + PROJECT_ID_EXT_CACHE_START; in get_occupied_app_cache_space_external()
/frameworks/native/cmds/servicemanager/
Dtest_sm.cpp115 for (uid_t uid : { AID_APP_START, AID_APP_START + 1, AID_APP_END }) { in TEST()
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp639 if (uid >= AID_APP_START) { in SetUpSeccompFilter()