Searched refs:aclp (Results 26 - 35 of 35) sorted by relevance

12

/illumos-gate/usr/src/cmd/ls/
H A Dls.c205 acl_t *aclp; /* ACL if present */ member in struct:lbuf
1435 if (p->aclp) {
1436 acl_printacl(p->aclp, num_cols, Vflg);
1714 acl_t *acep = p->aclp;
2019 error = acl_get(file, 0, &rep->aclp);
2031 if (rep->aclp &&
2032 ((acl_flags(rep->aclp) & ACL_IS_TRIVIAL) == 0)) {
2037 if (acl_type(rep->aclp) == ACLENT_T) {
2060 aclcnt = acl_cnt(rep->aclp);
2062 (aclent_t *)acl_data(rep->aclp);
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_acl.c926 aclent_t *aclp; local
963 for (numacls = 0, aclp = vsecattr->vsa_aclentp;
965 aclp++, numacls++) {
966 if (aclp->a_type & ACL_DEFAULT)
974 vsecattr->vsa_dfaclentp = aclp;
/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs.c416 ufs_ic_acl_t *aclp = (ufs_ic_acl_t *)arg; local
419 addr, (char *)data, aclp->acl_ic_perm, aclp->acl_ic_who);
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_token.c881 au_to_acl(struct acl *aclp) argument
893 value = (int32_t)aclp->a_type;
895 value = (int32_t)aclp->a_id;
897 value = (int32_t)aclp->a_perm;
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c2951 acl_t *aclp = NULL; /* acl info */ local
3611 * acl info may have been retrieved (in aclp).
3615 if (aclp != NULL) {
3621 ret = facl_set(dirfd, aclp);
3623 ret = facl_set(ofile, aclp);
3625 ret = acl_set(namep, aclp);
3628 ret = acl_set(namep, aclp);
3644 acl_free(aclp);
3645 aclp = NULL;
3771 &attr->attr_info[0], &aclp);
8107 static acl_t *aclp = NULL; local
8421 acl_t *aclp = NULL; local
[all...]
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_restore_writer.c2171 acl_t *aclp = NULL; local
2190 erc = acl_fromtext(acls->acl_info.attr_info, &aclp);
2195 if (aclp) {
2196 erc = acl_set(name, aclp);
2202 acl_free(aclp);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vnops.c2725 zfs_acl_t *aclp; local
2804 aclp = NULL;
3077 if (err = zfs_acl_chmod_setattr(zp, &aclp, new_mode))
3092 0, aclp->z_acl_bytes);
3095 aclp->z_acl_bytes);
3097 } else if (!zp->z_is_sa && aclp->z_acl_bytes > ZFS_ACE_SPACE) {
3099 0, aclp->z_acl_bytes);
3193 ASSERT3U((uintptr_t)aclp, !=, NULL);
3194 err = zfs_aclset_common(zp, aclp, cr, tx);
3198 zp->z_acl_cached = aclp;
[all...]
/illumos-gate/usr/src/cmd/backup/restore/
H A Dtape.c1245 fsd_acl(name, aclp, size)
1246 char *name, *aclp;
1256 if (aclp == NULL) {
1264 /*LINTED [aclp is malloc'd]*/
1265 diskacl = (ufs_acl_t *)aclp;
/illumos-gate/usr/src/common/smbclnt/
H A Dsmbfs_ntacl.c326 md_get_acl(mdchain_t *mdp, i_ntacl_t **aclp) argument
364 *aclp = acl;
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c3040 acl_t *aclp; local
3066 if (acl_fromtext(acltxt, &aclp) != 0) {
3072 if (acl_set(path, aclp) == -1) {
3073 free(aclp);
3077 free(aclp);

Completed in 150 milliseconds

12