Lines Matching refs:uid
76 unsigned int uid;
97 mode_t perm, unsigned int uid, unsigned int gid,
114 node->dp.uid = uid;
149 INFO("fixup %s %d %d 0%o\n", buf, dp->uid, dp->gid, dp->perm);
150 chown(buf, dp->uid, dp->gid);
155 static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
176 *uid = dp->uid;
181 *uid = 0;
190 unsigned uid;
198 mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
208 * some device nodes, so the uid has to be set with chown() and is still
213 chown(path, uid, -1);