Lines Matching full:brand
37 * of what "brand" ACL is: NFSv4, POSIX.1e or unknown. It happens
40 * ACL, if its brand is unknown it gets branded as NFSv4 if any of the
58 * Return brand of an ACL.
75 * Return 1, iff branding ACL as "brand" is ok.
78 _acl_brand_may_be(const acl_t acl, int brand) in _acl_brand_may_be() argument
84 if (_acl_brand(acl) == brand) in _acl_brand_may_be()
91 _entry_brand_may_be(const acl_entry_t entry, int brand) in _entry_brand_may_be() argument
94 return (_acl_brand_may_be(entry2acl(entry), brand)); in _entry_brand_may_be()
98 * Brand ACL as "brand".
101 _acl_brand_as(acl_t acl, int brand) in _acl_brand_as() argument
104 assert(_acl_brand_may_be(acl, brand)); in _acl_brand_as()
106 acl->ats_brand = brand; in _acl_brand_as()
110 _entry_brand_as(const acl_entry_t entry, int brand) in _entry_brand_as() argument
113 _acl_brand_as(entry2acl(entry), brand); in _entry_brand_as()