Home
last modified time | relevance | path

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

/system/core/libcutils/
Dmultiuser.cpp33 if (app_id >= AID_APP_START && app_id <= AID_APP_END) { in multiuser_get_cache_gid()
34 return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_CACHE_GID_START); in multiuser_get_cache_gid()
41 if (app_id >= AID_APP_START && app_id <= AID_APP_END) { in multiuser_get_ext_gid()
42 return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_EXT_GID_START); in multiuser_get_ext_gid()
49 if (app_id >= AID_APP_START && app_id <= AID_APP_END) { in multiuser_get_ext_cache_gid()
50 return multiuser_get_uid(user_id, (app_id - AID_APP_START) + AID_EXT_CACHE_GID_START); in multiuser_get_ext_cache_gid()
57 if (app_id >= AID_APP_START && app_id <= AID_APP_END) { in multiuser_get_shared_gid()
58 return (app_id - AID_APP_START) + AID_SHARED_GID_START; in multiuser_get_shared_gid()
59 } else if (app_id >= AID_ROOT && app_id <= AID_APP_START) { in multiuser_get_shared_gid()
/system/extras/simpleperf/simpleperf_app_runner/
Dsimpleperf_app_runner.cpp105 gid_t shared_app_gid = userAppId % AID_USER_OFFSET - AID_APP_START + AID_SHARED_GID_START; in GetSupplementaryGids()
182 if (info->uid < AID_APP_START || info->uid > AID_APP_END) { in main()
/system/core/libcutils/include_vndk/cutils/
Dandroid_filesystem_config.h183 #define AID_APP_START 10000 /* first app user */ macro
/system/core/libcutils/include/cutils/
Dandroid_filesystem_config.h183 #define AID_APP_START 10000 /* first app user */ macro
/system/core/include/private/
Dandroid_filesystem_config.h183 #define AID_APP_START 10000 /* first app user */ macro
/system/core/libcutils/include/private/
Dandroid_filesystem_config.h183 #define AID_APP_START 10000 /* first app user */ macro
/system/core/run-as/
Drun-as.cpp159 gid_t shared_app_gid = userAppId % AID_USER_OFFSET - AID_APP_START + AID_SHARED_GID_START; in get_supplementary_gids()
/system/core/logd/
DLogAudit.cpp164 if (uid >= AID_APP_START && uid <= AID_APP_END) { in auditParse()
/system/vold/
DVolumeManager.cpp524 if (!StartsWith(exeName, "/system/bin/app_process") && sb.st_uid < AID_APP_START) { in remountUid()