Home
last modified time | relevance | path

Searched refs:isroot (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dctf.h219 #define CTF_TYPE_INFO(kind, isroot, vlen) \ argument
220 (((kind) << 11) | (((isroot) ? 1 : 0) << 10) | ((vlen) & CTF_MAX_VLEN))
246 #define CTF_TYPE_INFO_V1(kind, isroot, vlen) \ argument
247 (((kind) << 12) | (((isroot) ? 1 : 0) << 11) | ((vlen) & 0x07ff))
/freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c292 int isroot = tp->t_flags & TDESC_F_ISROOT; in write_type() local
331 isroot, 1); in write_type()
333 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FLOAT, isroot, 1); in write_type()
358 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_POINTER, isroot, 0); in write_type()
364 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_ARRAY, isroot, 1); in write_type()
389 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_STRUCT, isroot, i); in write_type()
391 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_UNION, isroot, i); in write_type()
444 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_ENUM, isroot, i); in write_type()
463 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FORWARD, isroot, 0); in write_type()
469 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_TYPEDEF, isroot, 0); in write_type()
[all …]
/freebsd-12.1/sys/netsmb/
H A Dsmb_conn.c397 int error, isroot; in smb_vc_create() local
399 isroot = smb_suser(cred) == 0; in smb_vc_create()
403 if (uid != SMBM_ANY_OWNER && uid != realuid && !isroot) in smb_vc_create()
405 if (gid != SMBM_ANY_GROUP && !groupmember(gid, cred) && !isroot) in smb_vc_create()
750 int error, isroot; in smb_share_create() local
752 isroot = smb_suser(cred) == 0; in smb_share_create()
756 if (uid != SMBM_ANY_OWNER && uid != realuid && !isroot) in smb_share_create()
758 if (gid != SMBM_ANY_GROUP && !groupmember(gid, cred) && !isroot) in smb_share_create()
/freebsd-12.1/contrib/telnet/libtelnet/
H A Dsra.c417 isroot(const char *usr) in isroot() function
441 if (isroot(name) && !rootterm(line)) in check_user()
574 if (isroot(name) && !rootterm(line)) in check_user()
/freebsd-12.1/contrib/gcc/doc/
H A Dextend.texi2898 int isroot P((uid_t));
2902 isroot (x) /* @r{??? lossage here ???} */
2926 int isroot (uid_t);
2929 isroot (uid_t x)
/freebsd-12.1/contrib/unbound/doc/
H A DChangelog8512 - moved isroot and dellabel to own dname routines, with unit test.