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

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dctf.h198 * ctt_info: | kind | isroot | vlen |
219 #define CTF_TYPE_INFO(kind, isroot, vlen) \
220 (((kind) << 11) | (((isroot) ? 1 : 0) << 10) | ((vlen) & CTF_MAX_VLEN))
246 #define CTF_TYPE_INFO_V1(kind, isroot, vlen) \
247 (((kind) << 12) | (((isroot) ? 1 : 0) << 11) | ((vlen) & 0x07ff))
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c240 int isroot = tp->t_flags & TDESC_F_ISROOT; local
279 isroot, 1);
281 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FLOAT, isroot, 1);
303 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_POINTER, isroot, 0);
309 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_ARRAY, isroot, 1);
329 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_STRUCT, isroot, i);
331 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_UNION, isroot, i);
373 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_ENUM, isroot, i);
386 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FORWARD, isroot, 0);
392 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_TYPEDEF, isroot,
[all...]
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_conn.c385 int error, isroot; local
387 isroot = smb_suser(cred) == 0;
391 if (uid != SMBM_ANY_OWNER && uid != realuid && !isroot)
393 if (gid != SMBM_ANY_GROUP && !groupmember(gid, cred) && !isroot)
717 int error, isroot; local
719 isroot = smb_suser(cred) == 0;
723 if (uid != SMBM_ANY_OWNER && uid != realuid && !isroot)
725 if (gid != SMBM_ANY_GROUP && !groupmember(gid, cred) && !isroot)
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dsra.c417 isroot(const char *usr) function
441 if (isroot(name) && !rootterm(line))
574 if (isroot(name) && !rootterm(line))
/freebsd-9.3-release/sys/netncp/
H A Dncp_conn.c216 int error, isroot; local
223 isroot = ncp_suser(cred) == 0;
224 if (cap->owner != NCP_DEFAULT_OWNER && !isroot)
227 !groupmember(cap->group, cred) && !isroot)
/freebsd-9.3-release/sys/dev/wl/
H A Dif_wl.c1235 int irq, irqval, i, isroot; local
1308 isroot = (priv_check(td, PRIV_NET80211_GETKEY) == 0);
1312 if ((i > WLPSA_DESKEY) && (i < (WLPSA_DESKEY + 8)) && !isroot)

Completed in 133 milliseconds