Lines Matching full:uid
31 /* UID and PID are mutually exclusive */ in target__validate()
38 /* UID and CPU are mutually exclusive */ in target__validate()
52 /* UID and SYSTEM are mutually exclusive */ in target__validate()
73 /* BPF and UID are mutually exclusive */ in target__validate()
103 target->uid = UINT_MAX; in target__parse_uid()
112 * The user name not found. Maybe it's a UID number. in target__parse_uid()
115 int uid = strtol(str, &endptr, 10); in target__parse_uid() local
120 getpwuid_r(uid, &pwd, buf, sizeof(buf), &result); in target__parse_uid()
126 target->uid = result->pw_uid; in target__parse_uid()
135 "PID/TID switch overriding UID",
136 "UID switch overriding CPU",
138 "UID switch overriding SYSTEM",
142 "BPF switch overriding UID",