Lines Matching refs:uid
43 * usage: sdcard <path> <uid> <gid>
45 * It must be run as root, but will change to uid/gid as soon as it
46 * mounts a filesystem on /storage/sdcard. It will refuse to run if uid or
118 static unsigned uid = -1;
220 attr->uid = 0;
957 ERROR("usage: sdcard [-l -f] <path> <uid> <gid>\n\n\t-l force file names to lower case when creating new files\n\t-f fix up file system before starting (repairs bad file name case and group ownership)\n");
974 else if (uid == -1)
975 uid = strtoul(arg, 0, 10);
988 if (uid <= 0 || gid <= 0) {
989 ERROR("uid and gid must be nonzero\n");
1003 "user_id=%d,group_id=%d", fd, uid, gid);
1015 if (setuid(uid) < 0) {