Lines Matching refs:uid
74 unsigned int uid;
96 mode_t perm, unsigned int uid, unsigned int gid,
113 node->dp.uid = uid;
148 INFO("fixup %s %d %d 0%o\n", buf, dp->uid, dp->gid, dp->perm);
149 chown(buf, dp->uid, dp->gid);
154 static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
175 *uid = dp->uid;
180 *uid = 0;
189 unsigned uid;
195 mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
205 * some device nodes, so the uid has to be set with chown() and is still
210 chown(path, uid, -1);