Searched refs:appid (Results 1 – 1 of 1) sorted by relevance
226 unsigned long appid = 0; in app_id_from_name() local229 appid = strtoul(end+2, &end, 10) + AID_APP; in app_id_from_name()232 appid = strtoul(end+2, &end, 10) + AID_ISOLATED_START; in app_id_from_name()236 appid = android_ids[n].aid; in app_id_from_name()256 if (appid >= AID_USER) { in app_id_from_name()261 return (unsigned)(appid + userid*AID_USER); in app_id_from_name()264 static void print_app_name_from_appid_userid(const uid_t appid, in print_app_name_from_appid_userid() argument266 if (appid >= AID_ISOLATED_START) { in print_app_name_from_appid_userid()267 snprintf(buffer, bufferlen, "u%u_i%u", userid, appid - AID_ISOLATED_START); in print_app_name_from_appid_userid()268 } else if (userid == 0 && appid >= AID_SHARED_GID_START) { in print_app_name_from_appid_userid()[all …]