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

  /bionic/libc/bionic/
stubs.cpp 209 // u0_a1234 -> 0 * AID_USER + AID_APP + 1234
210 // u2_i1000 -> 2 * AID_USER + AID_ISOLATED_START + 1000
211 // u1_system -> 1 * AID_USER + android_ids['system']
256 if (appid >= AID_USER) {
261 return (unsigned)(appid + userid*AID_USER);
283 const uid_t appid = uid % AID_USER;
284 const uid_t userid = uid / AID_USER;
291 // AID_ISOLATED_START to AID_USER-1 -> u0_i1234
292 // AID_USER+ -> u1_radio, u1_a1234, u2_i1234, etc.
302 const uid_t appid = uid % AID_USER;
    [all...]
  /system/core/include/private/
android_filesystem_config.h 99 #define AID_USER 100000 /* offset for uid ranges for each user */
  /frameworks/native/cmds/servicemanager/
service_manager.c 144 unsigned appid = uid % AID_USER;
  /external/libselinux/src/
android.c 338 userid = uid / AID_USER;
339 appid = uid % AID_USER;
  /system/security/keystore/
keystore.cpp 171 return uid % AID_USER;
179 return uid / AID_USER;
    [all...]

Completed in 784 milliseconds