Home
last modified time | relevance | path

Searched refs:UID_MAX (Results 1 – 22 of 22) sorted by relevance

/freebsd-13.1/tools/build/cross-build/include/linux/
H A Dlimits.h74 #ifndef UID_MAX
75 #define UID_MAX ((uid_t)-1) macro
/freebsd-13.1/contrib/sendmail/editmap/
H A Deditmap.c247 # ifdef UID_MAX
248 if (TrustedUid > UID_MAX)
253 (long) UID_MAX);
/freebsd-13.1/lib/libc/gen/
H A Dpw_scan.c120 if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) { in __pw_scan()
122 warnx("%s > max uid value (%u)", p, UID_MAX); in __pw_scan()
/freebsd-13.1/sys/cddl/compat/opensolaris/sys/
H A Dmisc.h34 #define MAXUID UID_MAX
/freebsd-13.1/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dmisc.h35 #define MAXUID UID_MAX
/freebsd-13.1/usr.sbin/pw/
H A Dpw_user.c288 id = pw_checkid(name, UID_MAX); in pw_userlock()
788 id = pw_checkid(arg1, UID_MAX); in pw_user_show()
805 id = pw_checkid(optarg, UID_MAX); in pw_user_show()
872 id = pw_checkid(arg1, UID_MAX); in pw_user_del()
889 id = pw_checkid(optarg, UID_MAX); in pw_user_del()
1215 id = pw_checkid(arg1, UID_MAX); in pw_user_add()
1345 cmdcnf->min_uid = pw_checkid(p, UID_MAX); in pw_user_add()
1349 cmdcnf->max_uid = pw_checkid(p, UID_MAX); in pw_user_add()
1369 id = pw_checkid(userid, UID_MAX); in pw_user_add()
1539 id = pw_checkid(arg1, UID_MAX); in pw_user_mod()
[all …]
H A Dpw_conf.c345 UID_MAX, &errstr); in read_userconfig()
354 UID_MAX, &errstr); in read_userconfig()
/freebsd-13.1/usr.sbin/chown/
H A Dchown.c255 _Static_assert(UID_MAX >= GID_MAX, "UID MAX less than GID MAX"); in id()
256 if (errno || *ep != '\0' || val > UID_MAX) in id()
/freebsd-13.1/sys/sys/
H A Dlimits.h86 #define UID_MAX UINT_MAX /* max value for a uid_t */ macro
/freebsd-13.1/contrib/sendmail/makemap/
H A Dmakemap.c161 # ifdef UID_MAX
162 if (TrustedUid > UID_MAX)
168 (long) UID_MAX);
/freebsd-13.1/contrib/tcpdump/
H A Dprint-pflog.c104 if (hdr->uid != UID_MAX) in pflog_print()
/freebsd-13.1/contrib/mtree/
H A Dgetid.c414 if (id > UID_MAX || *ep != '\0') in pwmatchline()
/freebsd-13.1/usr.sbin/ypldap/
H A Dldapclient.c453 UID_MAX, NULL); in client_build_req()
485 ldap_attrs[0], 0, UID_MAX, NULL); in client_build_req()
H A Dyp.c363 ukey.ue_uid = strtonum(key, 0, UID_MAX, &estr); in ypproc_match_2_svc()
426 ukey.ue_uid = strtonum(cp, 0, UID_MAX, &estr); in ypproc_match_2_svc()
/freebsd-13.1/sys/netpfil/pf/
H A Dif_pflog.c245 hdr.uid = UID_MAX; in pflog_packet()
H A Dpf.c3204 if (u == UID_MAX && op != PF_OP_EQ && op != PF_OP_NE) in pf_match_uid()
3426 pd->lookup.uid = UID_MAX; in pf_socket_lookup()
/freebsd-13.1/contrib/sendmail/src/
H A Dreadcf.c3609 # ifdef UID_MAX
3610 if (DefUid > UID_MAX)
3613 (long)DefUid, (long)UID_MAX);
3951 # ifdef UID_MAX
3952 if (RunAsUid > UID_MAX)
3955 (long) RunAsUid, (long) UID_MAX);
4148 # ifdef UID_MAX
4149 if (TrustedUid > UID_MAX)
4152 (long) TrustedUid, (long) UID_MAX);
/freebsd-13.1/crypto/openssh/openbsd-compat/
H A Dport-aix.c467 if (ngroups >= maxgroups || ll < 0 || ll > UID_MAX) { in getgrouplist()
/freebsd-13.1/usr.sbin/inetd/
H A Dbuiltins.c655 uid = strtonum(p, 0, UID_MAX, &errstr); in ident_stream()
/freebsd-13.1/sbin/pfctl/
H A Dparse.y3391 if ($2 == UID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
3406 if ($1 == UID_MAX || $3 == UID_MAX) {
3424 $$ = UID_MAX;
3438 if ($1 < 0 || $1 >= UID_MAX) {
H A Dpfctl_parser.c823 UID_MAX); in print_rule()
/freebsd-13.1/bin/ps/
H A Dps.c948 if (errno != 0 || *endp != '\0' || bigtemp > UID_MAX) in addelem_uid()