Home | History | Annotate | Download | only in posix1e

Lines Matching refs:brand

45  * of what "brand" ACL is: NFSv4, POSIX.1e or unknown.  It happens
48 * ACL, if its brand is unknown it gets branded as NFSv4 if any of the
66 * Return brand of an ACL.
83 * Return 1, iff branding ACL as "brand" is ok.
86 _acl_brand_may_be(const acl_t acl, int brand)
92 if (_acl_brand(acl) == brand)
99 _entry_brand_may_be(const acl_entry_t entry, int brand)
102 return (_acl_brand_may_be(entry2acl(entry), brand));
106 * Brand ACL as "brand".
109 _acl_brand_as(acl_t acl, int brand)
112 assert(_acl_brand_may_be(acl, brand));
114 acl->ats_brand = brand;
118 _entry_brand_as(const acl_entry_t entry, int brand)
121 _acl_brand_as(entry2acl(entry), brand);