Lines Matching full:uid
20 // uid holds the uid for the base user in this namespace (defaults to getuid).
21 uid int member
23 // uidMap holds the namespace mapping of uid values.
34 baseID = flag.Int("base", -1, "base id for uids and gids (-1 = invoker's uid)")
35 uid = flag.Int("uid", -1, "uid of the hosting user") var
41 uids = flag.String("uids", "", "comma separated UID ranges to map contiguously (req. CAP_SETUID)")
109 base = detail.uid
142 switch *uid {
144 detail.uid = thisUID
146 detail.uid = *uid
148 detail.uidMap = parseRanges(&detail, *uids, detail.uid)
178 if thisUID != detail.uid {
179 w.SetUID(detail.uid)