Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c291 int isroot = tp->t_flags & TDESC_F_ISROOT; in write_type() local
328 isroot, 1); in write_type()
361 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_ARRAY, isroot, 1); in write_type()
441 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_ENUM, isroot, i); in write_type()
764 *isroot = CTF_V2_INFO_ISROOT(ctt->ctt_info); in get_ctt_info()
770 *isroot = CTF_V3_INFO_ISROOT(ctt->ctt_info); in get_ctt_info()
814 int isroot; in count_types() local
816 get_ctt_info(h, v, &kind, &vlen, &isroot); in count_types()
1071 int isroot, kind, vlen; in resurrect_types() local
1101 get_ctt_info(h, dptr, &kind, &vlen, &isroot); in resurrect_types()
[all …]
/freebsd/sys/sys/
H A Dctf.h174 #define CTF_V2_TYPE_INFO(kind, isroot, vlen) \ argument
175 (((kind) << 11) | ((isroot) != 0 ? (1 << 10) : 0) | \
185 #define CTF_V3_TYPE_INFO(kind, isroot, vlen) \ argument
186 (((kind) << 26) | ((isroot) != 0 ? (1 << 25) : 0) | \
/freebsd/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/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c64 int isroot; in ctf_get_ctt_info() local
71 isroot = CTF_V2_INFO_ISROOT(ctt->ctt_info); in ctf_get_ctt_info()
77 isroot = CTF_V3_INFO_ISROOT(ctt->ctt_info); in ctf_get_ctt_info()
85 *isrootp = isroot; in ctf_get_ctt_info()
266 int isroot; in ctf_type_iter() local
270 ctf_get_ctt_info(fp, tp, NULL, NULL, &isroot); in ctf_type_iter()
271 if (isroot && in ctf_type_iter()
H A Dctf_open.c96 type_info_v2(uint_t kind, uint_t isroot, uint_t len) in type_info_v2() argument
98 return (CTF_V2_TYPE_INFO(kind, isroot, len)); in type_info_v2()
174 type_info_v3(uint_t kind, uint_t isroot, uint_t len) in type_info_v3() argument
176 return (CTF_V3_TYPE_INFO(kind, isroot, len)); in type_info_v3()
H A Dctf_impl.h309 uint_t *vlen, int *isroot);
/freebsd/contrib/telnet/libtelnet/
H A Dsra.c413 isroot(const char *usr) in isroot() function
437 if (isroot(name) && !rootterm(line)) in check_user()
570 if (isroot(name) && !rootterm(line)) in check_user()
/freebsd/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c432 uint_t isroot, name, type; in read_types() local
439 isroot = CTF_V2_INFO_ISROOT(t2.ctt_info); in read_types()
454 isroot = CTF_V3_INFO_ISROOT(t3.ctt_info); in read_types()
482 "[<"[isroot], id, "]>"[isroot]); in read_types()
/freebsd/sys/cddl/dev/fbt/
H A Dfbt.c511 int isroot; in fbt_get_ctt_info() local
518 isroot = CTF_V2_INFO_ISROOT(ctt->ctt_info); in fbt_get_ctt_info()
524 isroot = CTF_V3_INFO_ISROOT(ctt->ctt_info); in fbt_get_ctt_info()
532 *isrootp = isroot; in fbt_get_ctt_info()
/freebsd/sys/kern/
H A Dvfs_lookup.c1212 bool isroot = dp == ndp->ni_rootdir || in vfs_lookup() local
1215 if (__predict_false(isroot && (ndp->ni_lcf & in vfs_lookup()
1224 if (isroot || ((dp->v_vflag & VV_ROOT) != 0 && in vfs_lookup()
/freebsd/contrib/lib9p/pytest/
H A Dp9conn.py1677 isroot = len(components) == 0
1678 closer = self.clunk if isroot else self.remove
/freebsd/contrib/unbound/doc/
H A DChangelog10983 - moved isroot and dellabel to own dname routines, with unit test.