Home
last modified time | relevance | path

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

/freebsd/tools/build/cross-build/include/linux/
H A Dlimits.h70 #ifndef UID_MAX
71 #define UID_MAX ((uid_t)-1) macro
/freebsd/contrib/sendmail/editmap/
H A Deditmap.c248 # ifdef UID_MAX
249 if (TrustedUid > UID_MAX)
254 (long) UID_MAX);
/freebsd/lib/libc/gen/
H A Dpw_scan.c116 if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) { in __pw_scan()
118 warnx("%s > max uid value (%u)", p, UID_MAX); in __pw_scan()
/freebsd/usr.sbin/pw/
H A Dpw_user.c267 id = pw_checkid(name, UID_MAX); in pw_userlock()
749 id = pw_checkid(arg1, UID_MAX); in pw_user_show()
766 id = pw_checkid(optarg, UID_MAX); in pw_user_show()
839 id = pw_checkid(arg1, UID_MAX); in pw_user_del()
856 id = pw_checkid(optarg, UID_MAX); in pw_user_del()
1208 id = pw_checkid(arg1, UID_MAX); in pw_user_add()
1344 cmdcnf->min_uid = pw_checkid(p, UID_MAX); in pw_user_add()
1348 cmdcnf->max_uid = pw_checkid(p, UID_MAX); in pw_user_add()
1368 id = pw_checkid(userid, UID_MAX); in pw_user_add()
1541 id = pw_checkid(arg1, UID_MAX); in pw_user_mod()
[all …]
H A Dpw_conf.c340 UID_MAX, &errstr); in read_userconfig()
349 UID_MAX, &errstr); in read_userconfig()
/freebsd/sys/cddl/compat/opensolaris/sys/
H A Dmisc.h32 #define MAXUID UID_MAX
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dmisc.h35 #define MAXUID UID_MAX
/freebsd/usr.sbin/chown/
H A Dchown.c240 _Static_assert(UID_MAX >= GID_MAX, "UID MAX less than GID MAX"); in id()
241 if (errno || *ep != '\0' || val > UID_MAX) in id()
/freebsd/sys/sys/
H A Dlimits.h84 #define UID_MAX UINT_MAX /* max value for a uid_t */ macro
/freebsd/contrib/sendmail/makemap/
H A Dmakemap.c245 # ifdef UID_MAX
246 if (TrustedUid > UID_MAX)
252 (long) UID_MAX);
/freebsd/usr.bin/mdo/
H A Dmdo.c54 uid_t uid = strtonum(username, 0, UID_MAX, &errp); in main()
/freebsd/contrib/tcpdump/
H A Dprint-pflog.c122 if (GET_HE_U_4(hdr->uid) != UID_MAX) in pflog_print()
/freebsd/contrib/mtree/
H A Dgetid.c414 if (id > UID_MAX || *ep != '\0') in pwmatchline()
/freebsd/usr.sbin/ypldap/
H A Dldapclient.c452 UID_MAX, NULL); in client_build_req()
484 ldap_attrs[0], 0, UID_MAX, NULL); in client_build_req()
H A Dyp.c359 ukey.ue_uid = strtonum(key, 0, UID_MAX, &estr); in ypproc_match_2_svc()
422 ukey.ue_uid = strtonum(cp, 0, UID_MAX, &estr); in ypproc_match_2_svc()
/freebsd/contrib/sendmail/src/
H A Dreadcf.c3841 #ifdef UID_MAX
3842 if (DefUid > UID_MAX)
3845 (long)DefUid, (long)UID_MAX);
4182 #ifdef UID_MAX
4183 if (RunAsUid > UID_MAX)
4186 (long) RunAsUid, (long) UID_MAX);
4379 #ifdef UID_MAX
4380 if (TrustedUid > UID_MAX)
4383 (long) TrustedUid, (long) UID_MAX);
/freebsd/lib/nss_tacplus/
H A Dnss_tacplus.c181 num < 0 || num > (intmax_t)UID_MAX) { in tacplus_getpwnam_r()
/freebsd/crypto/openssh/openbsd-compat/
H A Dport-aix.c467 if (ngroups >= maxgroups || ll < 0 || ll > UID_MAX) { in getgrouplist()
/freebsd/sys/netpfil/pf/
H A Dif_pflog.c292 hdr.uid = UID_MAX; in pflog_packet()
H A Dpf.c4539 if (u == UID_MAX && op != PF_OP_EQ && op != PF_OP_NE) in pf_match_uid()
4906 pd->lookup.uid = UID_MAX; in pf_socket_lookup()
/freebsd/usr.sbin/inetd/
H A Dbuiltins.c653 uid = strtonum(p, 0, UID_MAX, &errstr); in ident_stream()
/freebsd/sbin/pfctl/
H A Dparse.y3993 if ($2 == UID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
4008 if ($1 == UID_MAX || $3 == UID_MAX) {
4026 $$ = UID_MAX;
4040 if ($1 < 0 || $1 >= UID_MAX) {
H A Dpfctl_parser.c970 UID_MAX); in print_rule()
/freebsd/sys/fs/tarfs/
H A Dtarfs_vfsops.c520 num < 0 || num > UID_MAX) { in tarfs_alloc_one()
/freebsd/bin/ps/
H A Dps.c954 if (errno != 0 || *endp != '\0' || bigtemp > UID_MAX) in addelem_uid()