/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/ |
H A D | ctf.c | 291 int isroot = tp->t_flags & TDESC_F_ISROOT; in write_type() local 328 isroot, 1); in write_type() 330 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_FLOAT, isroot, 1); in write_type() 355 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_POINTER, isroot, 0); in write_type() 361 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_ARRAY, isroot, 1); in write_type() 386 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_STRUCT, isroot, i); in write_type() 388 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_UNION, isroot, i); in write_type() 441 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_ENUM, isroot, i); in write_type() 460 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_FORWARD, isroot, 0); in write_type() 466 ctt.ctt_info = CTF_V3_TYPE_INFO(CTF_K_TYPEDEF, isroot, 0); in write_type() [all …]
|
/freebsd/sys/sys/ |
H A D | ctf.h | 174 #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 D | smb_conn.c | 397 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 D | ctf_types.c | 64 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 D | ctf_open.c | 96 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 D | ctf_impl.h | 309 uint_t *vlen, int *isroot);
|
/freebsd/contrib/telnet/libtelnet/ |
H A D | sra.c | 413 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 D | dump.c | 432 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 D | fbt.c | 518 int isroot; in fbt_get_ctt_info() local 525 isroot = CTF_V2_INFO_ISROOT(ctt->ctt_info); in fbt_get_ctt_info() 531 isroot = CTF_V3_INFO_ISROOT(ctt->ctt_info); in fbt_get_ctt_info() 539 *isrootp = isroot; in fbt_get_ctt_info()
|
/freebsd/sys/kern/ |
H A D | vfs_lookup.c | 1212 bool isroot = dp == ndp->ni_rootdir || in vfs_lookup() 1215 if (__predict_false(isroot && (ndp->ni_lcf & in vfs_lookup() 1224 if (isroot || ((dp->v_vflag & VV_ROOT) != 0 && in vfs_lookup() 1201 bool isroot = dp == ndp->ni_rootdir || vfs_lookup() local
|
/freebsd/contrib/lib9p/pytest/ |
H A D | p9conn.py | 1677 isroot = len(components) == 0 1678 closer = self.clunk if isroot else self.remove
|
/freebsd/contrib/unbound/doc/ |
H A D | Changelog | 11576 - moved isroot and dellabel to own dname routines, with unit test.
|