Home | History | Annotate | Download | only in pax

Lines Matching defs:gid

85  *	check if this file matches a specified uid, gid or time range
103 * Routines to handle user selection of files based on the file uid/gid. To
104 * add an entry, the user supplies either the name or the uid/gid starting with
219 gid_t gid;
244 "Cannot determine gid for group name: %s", str);
247 gid = (gid_t)gr->gr_gid;
249 gid = (gid_t)strtoul(str+1, NULL, 10);
255 indx = ((unsigned)gid) % GRP_TB_SZ;
258 if (pt->gid == gid)
265 * gid not in the table, add it to the front of the chain
268 pt->gid = gid;
279 * check if this files gid matches a selected gid.
294 if (pt->gid == arcn->sb.st_gid)