Home | History | Annotate | Download | only in permission

Lines Matching defs:gids

47  * This class is also responsible for keeping track of the Linux gids per
48 * user for a package or a shared user. The gids are computed as a set of
49 * the gids for all granted permissions' gids on a per user basis.
57 /** The permission operation succeeded and no gids changed. */
60 /** The permission operation succeeded and gids changed. */
80 * Sets the global gids, applicable to all users.
82 * @param globalGids The global gids.
470 * Compute the Linux gids for a given device user from the permissions
475 * @return The gids for the device user.
480 int[] gids = mGlobalGids;
492 gids = appendInts(gids, permGids);
497 return gids;
501 * Compute the Linux gids for all device users from the permissions
504 * @return The gids for all device users.
507 int[] gids = mGlobalGids;
511 gids = appendInts(gids, userGids);
514 return gids;