OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AID_SHARED_GID_START
(Results
1 - 3
of
3
) sorted by null
/system/core/include/private/
android_filesystem_config.h
130
#define
AID_SHARED_GID_START
50000 /* start of gids for apps in each user to share */
/bionic/libc/bionic/
stubs.cpp
206
// all_a1234 -> 0 * AID_USER +
AID_SHARED_GID_START
+ 1234 (group name only)
236
appid = strtoul(end+2, &end, 10) +
AID_SHARED_GID_START
;
302
} else if (userid == 0 && appid >=
AID_SHARED_GID_START
&& appid <= AID_SHARED_GID_END) {
303
snprintf(buffer, bufferlen, "all_a%u", appid -
AID_SHARED_GID_START
);
/system/core/logd/
LogStatistics.cpp
175
if (!name && (userId > (
AID_SHARED_GID_START
- AID_APP))) {
176
name = android::uidToName(userId - (
AID_SHARED_GID_START
- AID_APP));
Completed in 56 milliseconds