Home
last modified time | relevance | path

Searched refs:va_supported (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.1.9/bsd/sys/
H A Dvnode.h506 #define VATTR_INIT(v) do {(v)->va_supported = (v)->va_active = 0ll; (v)->va_vafla…
508 #define VATTR_SET_SUPPORTED(v, a) ((v)->va_supported |= VNODE_ATTR_ ## a)
509 #define VATTR_IS_SUPPORTED(v, a) ((v)->va_supported & VNODE_ATTR_ ## a)
511 #define VATTR_CLEAR_SUPPORTED(v, a) ((v)->va_supported &= ~VNODE_ATTR_ ## a)
512 #define VATTR_CLEAR_SUPPORTED_ALL(v) ((v)->va_supported = 0)
514 #define VATTR_ALL_SUPPORTED(v) (((v)->va_active & (v)->va_supported) == (v)->va_active)
515 #define VATTR_INACTIVE_SUPPORTED(v) do {(v)->va_active &= ~(v)->va_supported; (v)->va_supported
692 uint64_t va_supported; member
/xnu-12377.1.9/bsd/vfs/
H A Dvfs_attrlist.c891 (tab->bits & vap->va_supported) == 0) { in getattrlist_fixupattrs()
901 (vap->va_supported & tab->bits) == 0) { in getattrlist_fixupattrs()
911 (vap->va_supported & tab->bits) == 0) { in getattrlist_fixupattrs()
921 (vap->va_supported & tab->bits) == 0) { in getattrlist_fixupattrs()
2899 vap->va_supported = vap->va_active; in vfs_attr_pack_internal()
H A Dkpi_vfs.c3151 if ((active & PERMISSION_BITS) & vap->va_supported) { in vnode_setattr()
3164 if (active & vap->va_supported) { in vnode_setattr()
H A Dvfs_subr.c10543 if ((vap->va_active & VNODE_SEC_ATTRS_NO_ACL) != (vap->va_supported & VNODE_SEC_ATTRS_NO_ACL)) { in vnode_attr_authorize()
10545 vap->va_active, vap->va_supported); in vnode_attr_authorize()