Lines Matching refs:uid
55 char validuser; /* set if the uid exists */
62 static struct disk *usglist[MAXUSERS]; /* holds data on disk usg by uid */
138 hash_insert(uid_t uid)
141 int key = HASHKEY(uid);
148 curdisk->dsk_uid = uid;
157 * return the disk entry for given uid. return NULL if not found.
160 hash_find(uid_t uid)
164 for (curdisk = usglist[HASHKEY(uid)];
166 if (curdisk->dsk_uid == uid) {
245 * Files with unknown uid should go into nchrg. Otherwise
246 * (without -p), we try creating new entry for the uid.