smb_entry 207 source3/modules/vfs_aixacl_util.c struct smb_acl_entry *smb_entry = NULL; smb_entry 236 source3/modules/vfs_aixacl_util.c smb_entry = &(theacl->acl[i]); smb_entry 237 source3/modules/vfs_aixacl_util.c id_type = smb_entry->a_type; smb_entry 242 source3/modules/vfs_aixacl_util.c file_acl->u_access = aixacl_smb_to_aixperm(smb_entry->a_perm); smb_entry 245 source3/modules/vfs_aixacl_util.c file_acl->g_access = aixacl_smb_to_aixperm(smb_entry->a_perm); smb_entry 248 source3/modules/vfs_aixacl_util.c file_acl->o_access = aixacl_smb_to_aixperm(smb_entry->a_perm); smb_entry 279 source3/modules/vfs_aixacl_util.c acl_entry->ace_access = aixacl_smb_to_aixperm(smb_entry->a_perm); smb_entry 289 source3/modules/vfs_aixacl_util.c ace_id->id_type = (smb_entry->a_type==SMB_ACL_GROUP) ? ACEID_GROUP : ACEID_USER; smb_entry 292 source3/modules/vfs_aixacl_util.c ace_id->id_data[0] = (smb_entry->a_type==SMB_ACL_GROUP) ? smb_entry->gid : smb_entry->uid; smb_entry 426 source3/modules/vfs_hpuxacl.c const struct smb_acl_entry *smb_entry = &(smb_acl->acl[i]); smb_entry 431 source3/modules/vfs_hpuxacl.c hpux_entry.a_type = smb_tag_to_hpux_tag(smb_entry->a_type); smb_entry 439 source3/modules/vfs_hpuxacl.c smb_entry->uid)); smb_entry 440 source3/modules/vfs_hpuxacl.c hpux_entry.a_id = (uid_t)smb_entry->uid; smb_entry 444 source3/modules/vfs_hpuxacl.c smb_entry->gid)); smb_entry 445 source3/modules/vfs_hpuxacl.c hpux_entry.a_id = (uid_t)smb_entry->gid; smb_entry 456 source3/modules/vfs_hpuxacl.c smb_perm_to_hpux_perm(smb_entry->a_perm); smb_entry 503 source3/modules/vfs_hpuxacl.c SMB_ACL_ENTRY_T smb_entry; smb_entry 517 source3/modules/vfs_hpuxacl.c smb_entry = &result->acl[result->count]; smb_entry 518 source3/modules/vfs_hpuxacl.c if (sys_acl_set_tag_type(smb_entry, smb_entry 526 source3/modules/vfs_hpuxacl.c sys_acl_set_qualifier(smb_entry, (void *)&hpux_acl[i].a_id); smb_entry 528 source3/modules/vfs_hpuxacl.c if (sys_acl_set_permset(smb_entry, &smb_perm) != 0) { smb_entry 358 source3/modules/vfs_solarisacl.c const struct smb_acl_entry *smb_entry = &(smb_acl->acl[i]); smb_entry 363 source3/modules/vfs_solarisacl.c solaris_entry.a_type = smb_tag_to_solaris_tag(smb_entry->a_type); smb_entry 371 source3/modules/vfs_solarisacl.c (unsigned int)smb_entry->uid)); smb_entry 372 source3/modules/vfs_solarisacl.c solaris_entry.a_id = (uid_t)smb_entry->uid; smb_entry 376 source3/modules/vfs_solarisacl.c (unsigned int)smb_entry->gid)); smb_entry 377 source3/modules/vfs_solarisacl.c solaris_entry.a_id = (uid_t)smb_entry->gid; smb_entry 388 source3/modules/vfs_solarisacl.c smb_perm_to_solaris_perm(smb_entry->a_perm); smb_entry 435 source3/modules/vfs_solarisacl.c SMB_ACL_ENTRY_T smb_entry; smb_entry 449 source3/modules/vfs_solarisacl.c smb_entry = &result->acl[result->count]; smb_entry 450 source3/modules/vfs_solarisacl.c if (sys_acl_set_tag_type(smb_entry, smb_entry 458 source3/modules/vfs_solarisacl.c sys_acl_set_qualifier(smb_entry, (void *)&solaris_acl[i].a_id); smb_entry 460 source3/modules/vfs_solarisacl.c if (sys_acl_set_permset(smb_entry, &smb_perm) != 0) { smb_entry 271 source3/modules/vfs_tru64acl.c const struct smb_acl_entry *smb_entry = &smb_acl->acl[i]; smb_entry 275 source3/modules/vfs_tru64acl.c tru64_tag = smb_tag_to_tru64(smb_entry->a_type); smb_entry 299 source3/modules/vfs_tru64acl.c switch (smb_entry->a_type) { smb_entry 302 source3/modules/vfs_tru64acl.c (int *)&smb_entry->uid) != 0) smb_entry 308 source3/modules/vfs_tru64acl.c DEBUGADD(10, (" - setting uid to %d\n", smb_entry->uid)); smb_entry 312 source3/modules/vfs_tru64acl.c (int *)&smb_entry->gid) != 0) smb_entry 318 source3/modules/vfs_tru64acl.c DEBUGADD(10, (" - setting gid to %d\n", smb_entry->gid)); smb_entry 324 source3/modules/vfs_tru64acl.c tru64_permset = smb_permset_to_tru64(smb_entry->a_perm);