Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dstubs.c254 unsigned long appid; in app_id_from_name() local
265 appid = strtoul(end+2, &end, 10) + AID_APP; in app_id_from_name()
267 appid = strtoul(end+2, &end, 10) + AID_ISOLATED_START; in app_id_from_name()
279 if (appid < AID_APP || appid >= AID_USER) in app_id_from_name()
282 return (unsigned)(appid + userid*AID_USER); in app_id_from_name()
292 uid_t appid; in print_app_uid_name() local
295 appid = uid % AID_USER; in print_app_uid_name()
298 if (appid < AID_ISOLATED_START) { in print_app_uid_name()
299 snprintf(buffer, bufferlen, "u%u_a%u", userid, appid - AID_APP); in print_app_uid_name()
301 snprintf(buffer, bufferlen, "u%u_i%u", userid, appid - AID_ISOLATED_START); in print_app_uid_name()
[all …]