Lines Matching defs:sd
170 smbfs_acl_setsd(int fd, uint32_t selector, i_ntsd_t *sd)
185 error = mb_put_ntsd(mbp, sd);
208 i_ntsd_t *sd = NULL;
235 error = smbfs_acl_getsd(fd, selector, &sd);
238 /* Note: sd now holds allocated data. */
251 error = smbfs_acl_sd2zfs(sd, acl, uidp, gidp);
264 smbfs_acl_free_sd(sd);
277 i_ntsd_t *sd = NULL;
314 * Returns allocated data in sd
316 error = smbfs_acl_zfs2sd(acl, uid, gid, selector, &sd);
318 error = smbfs_acl_setsd(fd, selector, sd);
320 smbfs_acl_free_sd(sd);
379 smbfs_acl_print_sd(FILE *fp, i_ntsd_t *sd)
383 sd->sd_revision, sd->sd_flags);
385 smbfs_fprint_sid(fp, sd->sd_owner);
387 smbfs_fprint_sid(fp, sd->sd_group);
389 smbfs_fprint_ntacl(fp, sd->sd_sacl);
391 smbfs_fprint_ntacl(fp, sd->sd_dacl);