Lines Matching refs:name
275 file_has_acl (char const *name, struct stat const *sb) in file_has_acl() argument
291 ret = acl_extended_file (name); in file_has_acl()
301 acl_t acl = acl_get_file (name, ACL_TYPE_EXTENDED); in file_has_acl()
310 acl_t acl = acl_get_file (name, ACL_TYPE_ACCESS); in file_has_acl()
331 acl = acl_get_file (name, ACL_TYPE_DEFAULT); in file_has_acl()
357 return acl_trivial (name); in file_has_acl()
370 count = acl (name, GETACLCNT, 0, NULL); in file_has_acl()
396 if (acl (name, GETACL, count, entries) == count) in file_has_acl()
420 count = acl (name, ACE_GETACLCNT, 0, NULL); in file_has_acl()
444 if (acl (name, ACE_GETACL, count, entries) == count) in file_has_acl()
471 count = getacl (name, 0, NULL); in file_has_acl()
489 if (getacl (name, count, entries) == count) in file_has_acl()
493 if (stat (name, &statbuf) < 0) in file_has_acl()
510 if (statacl (name, STX_NORMAL, &u.a, sizeof (u)) < 0) in file_has_acl()