Lines Matching refs:ae_perm
70 acep->ae_perm = (acl_perm_t)0; in nfsrv_dissectace()
174 &acep->ae_perm); in nfsrv_dissectace()
326 if (ace->ae_perm & ACL_LIST_DIRECTORY) in nfsrv_buildace()
328 if (ace->ae_perm & ACL_ADD_FILE) in nfsrv_buildace()
330 if (ace->ae_perm & ACL_ADD_SUBDIRECTORY) in nfsrv_buildace()
332 if (ace->ae_perm & ACL_READ_NAMED_ATTRS) in nfsrv_buildace()
334 if (ace->ae_perm & ACL_WRITE_NAMED_ATTRS) in nfsrv_buildace()
336 if (ace->ae_perm & ACL_EXECUTE) in nfsrv_buildace()
338 if (ace->ae_perm & ACL_DELETE_CHILD) in nfsrv_buildace()
340 if (ace->ae_perm & ACL_READ_ATTRIBUTES) in nfsrv_buildace()
342 if (ace->ae_perm & ACL_WRITE_ATTRIBUTES) in nfsrv_buildace()
344 if (ace->ae_perm & ACL_DELETE) in nfsrv_buildace()
346 if (ace->ae_perm & ACL_READ_ACL) in nfsrv_buildace()
348 if (ace->ae_perm & ACL_WRITE_ACL) in nfsrv_buildace()
350 if (ace->ae_perm & ACL_WRITE_OWNER) in nfsrv_buildace()
352 if (ace->ae_perm & ACL_SYNCHRONIZE) in nfsrv_buildace()
355 acemask = nfs_aceperm(ace->ae_perm); in nfsrv_buildace()
369 nfs_aceperm(acl_perm_t ae_perm) in nfs_aceperm() argument
373 if (ae_perm & ACL_READ_DATA) in nfs_aceperm()
375 if (ae_perm & ACL_WRITE_DATA) in nfs_aceperm()
377 if (ae_perm & ACL_APPEND_DATA) in nfs_aceperm()
379 if (ae_perm & ACL_READ_NAMED_ATTRS) in nfs_aceperm()
381 if (ae_perm & ACL_WRITE_NAMED_ATTRS) in nfs_aceperm()
383 if (ae_perm & ACL_EXECUTE) in nfs_aceperm()
385 if (ae_perm & ACL_READ_ATTRIBUTES) in nfs_aceperm()
387 if (ae_perm & ACL_WRITE_ATTRIBUTES) in nfs_aceperm()
389 if (ae_perm & ACL_DELETE) in nfs_aceperm()
391 if (ae_perm & ACL_READ_ACL) in nfs_aceperm()
393 if (ae_perm & ACL_WRITE_ACL) in nfs_aceperm()
395 if (ae_perm & ACL_WRITE_OWNER) in nfs_aceperm()
397 if (ae_perm & ACL_SYNCHRONIZE) in nfs_aceperm()
490 if (acep1->ae_perm != acep2->ae_perm) in nfsrv_compareacl()