Home | History | Annotate | Download | only in am

Lines Matching defs:gids

4237             int[] gids = null;
4242 checkTime(startTime, "startProcess: getting gids from package manager");
4255 * Add shared application and profile GIDs so applications can share some
4259 gids = new int[3];
4261 gids = new int[permGids.length + 3];
4262 System.arraycopy(permGids, 0, gids, 3, permGids.length);
4264 gids[0] = UserHandle.getSharedAppGid(UserHandle.getAppId(uid));
4265 gids[1] = UserHandle.getCacheAppGid(UserHandle.getAppId(uid));
4266 gids[2] = UserHandle.getUserGid(UserHandle.getUserId(uid));
4268 // Replace any invalid GIDs
4269 if (gids[0] == UserHandle.ERR_GID) gids[0] = gids[2];
4270 if (gids[1] == UserHandle.ERR_GID) gids[1] = gids[2];
4365 app.gids = gids;
4381 return startProcessLocked(hostingType, hostingNameStr, entryPoint, app, uid, gids,
4401 ProcessRecord app, int uid, int[] gids, int runtimeFlags, int mountExternal,
4428 app, app.startUid, gids, runtimeFlags, mountExternal, app.seInfo,
4448 uid, gids, runtimeFlags, mountExternal, seInfo, requiredAbi, instructionSet,
4464 ProcessRecord app, int uid, int[] gids, int runtimeFlags, int mountExternal,
4474 app.processName, uid, uid, gids, runtimeFlags, mountExternal,
4480 app.processName, uid, uid, gids, runtimeFlags, mountExternal,