theacl            338 examples/VFS/skel_opaque.c static int skel_sys_acl_get_entry(vfs_handle_struct *handle,  SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
theacl            386 examples/VFS/skel_opaque.c static char *skel_sys_acl_to_text(vfs_handle_struct *handle,  SMB_ACL_T theacl, ssize_t *plen)
theacl            422 examples/VFS/skel_opaque.c static int skel_sys_acl_valid(vfs_handle_struct *handle,  SMB_ACL_T theacl )
theacl            428 examples/VFS/skel_opaque.c static int skel_sys_acl_set_file(vfs_handle_struct *handle,  const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
theacl            434 examples/VFS/skel_opaque.c static int skel_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, SMB_ACL_T theacl)
theacl            332 examples/VFS/skel_transparent.c static int skel_sys_acl_get_entry(vfs_handle_struct *handle,  SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
theacl            334 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id, entry_p);
theacl            372 examples/VFS/skel_transparent.c static char *skel_sys_acl_to_text(vfs_handle_struct *handle,  SMB_ACL_T theacl, ssize_t *plen)
theacl            374 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
theacl            402 examples/VFS/skel_transparent.c static int skel_sys_acl_valid(vfs_handle_struct *handle,  SMB_ACL_T theacl )
theacl            404 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
theacl            407 examples/VFS/skel_transparent.c static int skel_sys_acl_set_file(vfs_handle_struct *handle,  const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
theacl            409 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype, theacl);
theacl            412 examples/VFS/skel_transparent.c static int skel_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, SMB_ACL_T theacl)
theacl            414 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
theacl             94 librpc/ndr/ndr_sec_helper.c size_t ndr_size_security_acl(const struct security_acl *theacl, struct smb_iconv_convenience *ic, int flags)
theacl             98 librpc/ndr/ndr_sec_helper.c 	if (!theacl) return 0;
theacl            100 librpc/ndr/ndr_sec_helper.c 	for (i=0;i<theacl->num_aces;i++) {
theacl            101 librpc/ndr/ndr_sec_helper.c 		ret += ndr_size_security_ace(&theacl->aces[i], ic, flags);
theacl            449 source3/include/vfs.h 		int (*sys_acl_get_entry)(struct vfs_handle_struct *handle, SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p);
theacl            457 source3/include/vfs.h 		char * (*sys_acl_to_text)(struct vfs_handle_struct *handle, SMB_ACL_T theacl, ssize_t *plen);
theacl            463 source3/include/vfs.h 		int (*sys_acl_valid)(struct vfs_handle_struct *handle, SMB_ACL_T theacl );
theacl            464 source3/include/vfs.h 		int (*sys_acl_set_file)(struct vfs_handle_struct *handle, const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
theacl            465 source3/include/vfs.h 		int (*sys_acl_set_fd)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_ACL_T theacl);
theacl            106 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_GET_ENTRY(conn, theacl, entry_id, entry_p) ((conn)->vfs.ops.sys_acl_get_entry((conn)->vfs.handles.sys_acl_get_entry, (theacl), (entry_id), (entry_p)))
theacl            114 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_TO_TEXT(conn, theacl, plen) ((conn)->vfs.ops.sys_acl_to_text((conn)->vfs.handles.sys_acl_to_text, (theacl), (plen)))
theacl            120 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_VALID(conn, theacl) ((conn)->vfs.ops.sys_acl_valid((conn)->vfs.handles.sys_acl_valid, (theacl)))
theacl            121 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_SET_FILE(conn, name, acltype, theacl) ((conn)->vfs.ops.sys_acl_set_file((conn)->vfs.handles.sys_acl_set_file, (name), (acltype), (theacl)))
theacl            122 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_SET_FD(fsp, theacl) ((fsp)->conn->vfs.ops.sys_acl_set_fd((fsp)->conn->vfs.handles.sys_acl_set_fd, (fsp), (theacl)))
theacl            240 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_GET_ENTRY(conn, theacl, entry_id, entry_p) ((conn)->vfs_opaque.ops.sys_acl_get_entry((conn)->vfs_opaque.handles.sys_acl_get_entry, (theacl), (entry_id), (entry_p)))
theacl            248 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_TO_TEXT(conn, theacl, plen) ((conn)->vfs_opaque.ops.sys_acl_to_text((conn)->vfs_opaque.handles.sys_acl_to_text, (theacl), (plen)))
theacl            254 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_VALID(conn, theacl) ((conn)->vfs_opaque.ops.sys_acl_valid((conn)->vfs_opaque.handles.sys_acl_valid, (theacl)))
theacl            255 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_SET_FILE(conn, name, acltype, theacl) ((conn)->vfs_opaque.ops.sys_acl_set_file((conn)->vfs_opaque.handles.sys_acl_set_file, (name), (acltype), (theacl)))
theacl            256 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_SET_FD(fsp, theacl) ((fsp)->conn->vfs_opaque.ops.sys_acl_set_fd((fsp)->conn->vfs_opaque.handles.sys_acl_set_fd, (fsp), (theacl)))
theacl            375 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id, entry_p) ((handle)->vfs_next.ops.sys_acl_get_entry((handle)->vfs_next.handles.sys_acl_get_entry, (theacl), (entry_id), (entry_p)))
theacl            383 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen) ((handle)->vfs_next.ops.sys_acl_to_text((handle)->vfs_next.handles.sys_acl_to_text, (theacl), (plen)))
theacl            389 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl) ((handle)->vfs_next.ops.sys_acl_valid((handle)->vfs_next.handles.sys_acl_valid, (theacl)))
theacl            390 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype, theacl) ((handle)->vfs_next.ops.sys_acl_set_file((handle)->vfs_next.handles.sys_acl_set_file, (name), (acltype), (theacl)))
theacl            391 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl) ((handle)->vfs_next.ops.sys_acl_set_fd((handle)->vfs_next.handles.sys_acl_set_fd, (fsp), (theacl)))
theacl            694 source3/libgpo/gpo_reg.c 	SEC_ACL *theacl = NULL;
theacl            738 source3/libgpo/gpo_reg.c 	theacl = make_sec_acl(mem_ctx, NT4_ACL_REVISION, 6, ace);
theacl            739 source3/libgpo/gpo_reg.c 	W_ERROR_HAVE_NO_MEMORY(theacl);
theacl            746 source3/libgpo/gpo_reg.c 			    theacl, sd_size);
theacl             47 source3/modules/nfs4_acls.c static SMB_ACL4_INT_T *get_validated_aclint(SMB4ACL_T *theacl)
theacl             49 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = (SMB_ACL4_INT_T *)theacl;
theacl             50 source3/modules/nfs4_acls.c 	if (theacl==NULL)
theacl             86 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T	*theacl = (SMB_ACL4_INT_T *)TALLOC_ZERO_SIZE(mem_ctx, sizeof(SMB_ACL4_INT_T));
theacl             87 source3/modules/nfs4_acls.c 	if (theacl==NULL)
theacl             93 source3/modules/nfs4_acls.c 	theacl->magic = SMB_ACL4_INT_MAGIC;
theacl             95 source3/modules/nfs4_acls.c 	return (SMB4ACL_T *)theacl;
theacl             98 source3/modules/nfs4_acls.c SMB4ACE_T *smb_add_ace4(SMB4ACL_T *theacl, SMB_ACE4PROP_T *prop)
theacl            100 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = get_validated_aclint(theacl);
theacl            146 source3/modules/nfs4_acls.c SMB4ACE_T *smb_first_ace4(SMB4ACL_T *theacl)
theacl            148 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = get_validated_aclint(theacl);
theacl            155 source3/modules/nfs4_acls.c uint32 smb_get_naces(SMB4ACL_T *theacl)
theacl            157 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = get_validated_aclint(theacl);
theacl            204 source3/modules/nfs4_acls.c static bool smbacl4_nfs42win(TALLOC_CTX *mem_ctx, SMB4ACL_T *theacl, /* in */
theacl            212 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = (SMB_ACL4_INT_T *)theacl;
theacl            219 source3/modules/nfs4_acls.c 	aclint = get_validated_aclint(theacl);
theacl            284 source3/modules/nfs4_acls.c 	SEC_DESC **ppdesc, SMB4ACL_T *theacl)
theacl            293 source3/modules/nfs4_acls.c 	if (theacl==NULL || smb_get_naces(theacl)==0)
theacl            301 source3/modules/nfs4_acls.c 	if (smbacl4_nfs42win(mem_ctx, theacl, &sid_owner, &sid_group, S_ISDIR(sbuf->st_mode),
theacl            331 source3/modules/nfs4_acls.c 			       SEC_DESC **ppdesc, SMB4ACL_T *theacl)
theacl            341 source3/modules/nfs4_acls.c 	return smb_get_nt_acl_nfs4_common(&sbuf, security_info, ppdesc, theacl);
theacl            347 source3/modules/nfs4_acls.c 			      SEC_DESC **ppdesc, SMB4ACL_T *theacl)
theacl            357 source3/modules/nfs4_acls.c 	return smb_get_nt_acl_nfs4_common(&sbuf, security_info, ppdesc, theacl);
theacl            408 source3/modules/nfs4_acls.c static void smbacl4_dump_nfs4acl(int level, SMB4ACL_T *theacl)
theacl            410 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = get_validated_aclint(theacl);
theacl            432 source3/modules/nfs4_acls.c 	SMB4ACL_T *theacl,
theacl            435 source3/modules/nfs4_acls.c 	SMB_ACL4_INT_T *aclint = get_validated_aclint(theacl);
theacl            627 source3/modules/nfs4_acls.c 	SMB4ACL_T *theacl, /* may modify it */
theacl            634 source3/modules/nfs4_acls.c 	SMB_ACE4PROP_T *ace4found = smbacl4_find_equal_special(theacl, ace);
theacl            667 source3/modules/nfs4_acls.c 	SMB4ACL_T *theacl;
theacl            673 source3/modules/nfs4_acls.c 	theacl = smb_create_smb4acl();
theacl            674 source3/modules/nfs4_acls.c 	if (theacl==NULL)
theacl            691 source3/modules/nfs4_acls.c 			if (smbacl4_MergeIgnoreReject(pparams->acedup, theacl,
theacl            697 source3/modules/nfs4_acls.c 			smb_add_ace4(theacl, &ace_v4);
theacl            700 source3/modules/nfs4_acls.c 	return theacl;
theacl            709 source3/modules/nfs4_acls.c 	SMB4ACL_T *theacl = NULL;
theacl            768 source3/modules/nfs4_acls.c 	theacl = smbacl4_win2nfs4(fsp->fsp_name, psd->dacl, &params, sbuf.st_uid, sbuf.st_gid);
theacl            769 source3/modules/nfs4_acls.c 	if (!theacl)
theacl            772 source3/modules/nfs4_acls.c 	smbacl4_dump_nfs4acl(10, theacl);
theacl            777 source3/modules/nfs4_acls.c 	result = set_nfs4_native(fsp, theacl);
theacl            120 source3/modules/nfs4_acls.h SMB4ACE_T *smb_add_ace4(SMB4ACL_T *theacl, SMB_ACE4PROP_T *prop);
theacl            125 source3/modules/nfs4_acls.h SMB4ACE_T *smb_first_ace4(SMB4ACL_T *theacl);
theacl            130 source3/modules/nfs4_acls.h uint32 smb_get_naces(SMB4ACL_T *theacl);
theacl            134 source3/modules/nfs4_acls.h 	SEC_DESC **ppdesc, SMB4ACL_T *theacl);
theacl            139 source3/modules/nfs4_acls.h 	SEC_DESC **ppdesc, SMB4ACL_T *theacl);
theacl            851 source3/modules/vfs_acl_tdb.c                               SMB_ACL_T theacl)
theacl            872 source3/modules/vfs_acl_tdb.c 						theacl);
theacl            887 source3/modules/vfs_acl_tdb.c                             SMB_ACL_T theacl)
theacl            910 source3/modules/vfs_acl_tdb.c 						theacl);
theacl            624 source3/modules/vfs_acl_xattr.c                               SMB_ACL_T theacl)
theacl            629 source3/modules/vfs_acl_xattr.c 						theacl);
theacl            647 source3/modules/vfs_acl_xattr.c                             SMB_ACL_T theacl)
theacl            651 source3/modules/vfs_acl_xattr.c 						theacl);
theacl             23 source3/modules/vfs_aixacl.c extern struct acl *aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
theacl            136 source3/modules/vfs_aixacl.c 			      SMB_ACL_T theacl)
theacl            141 source3/modules/vfs_aixacl.c 	file_acl = aixacl_smb_to_aixacl(type, theacl);
theacl            156 source3/modules/vfs_aixacl.c 			    SMB_ACL_T theacl)
theacl            161 source3/modules/vfs_aixacl.c 	file_acl = aixacl_smb_to_aixacl(SMB_ACL_TYPE_ACCESS, theacl);
theacl             29 source3/modules/vfs_aixacl2.c extern struct acl *aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
theacl            404 source3/modules/vfs_aixacl2.c 			      SMB_ACL_T theacl)
theacl            418 source3/modules/vfs_aixacl2.c 	acl_aixc = aixacl_smb_to_aixacl(type, theacl);
theacl            441 source3/modules/vfs_aixacl2.c 			    SMB_ACL_T theacl)
theacl            455 source3/modules/vfs_aixacl2.c 	acl_aixc = aixacl_smb_to_aixacl(SMB_ACL_TYPE_ACCESS, theacl);
theacl            205 source3/modules/vfs_aixacl_util.c struct acl *aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
theacl            235 source3/modules/vfs_aixacl_util.c 	for(i=0; i<theacl->count; i++ ) {
theacl            236 source3/modules/vfs_aixacl_util.c 		smb_entry = &(theacl->acl[i]);
theacl            309 source3/modules/vfs_cap.c static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
theacl            317 source3/modules/vfs_cap.c 	return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
theacl           1303 source3/modules/vfs_default.c static int vfswrap_sys_acl_get_entry(vfs_handle_struct *handle,  SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
theacl           1305 source3/modules/vfs_default.c 	return sys_acl_get_entry(theacl, entry_id, entry_p);
theacl           1343 source3/modules/vfs_default.c static char * vfswrap_sys_acl_to_text(vfs_handle_struct *handle,  SMB_ACL_T theacl, ssize_t *plen)
theacl           1345 source3/modules/vfs_default.c 	return sys_acl_to_text(theacl, plen);
theacl           1373 source3/modules/vfs_default.c static int vfswrap_sys_acl_valid(vfs_handle_struct *handle,  SMB_ACL_T theacl )
theacl           1375 source3/modules/vfs_default.c 	return sys_acl_valid(theacl );
theacl           1378 source3/modules/vfs_default.c static int vfswrap_sys_acl_set_file(vfs_handle_struct *handle,  const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
theacl           1380 source3/modules/vfs_default.c 	return sys_acl_set_file(handle, name, acltype, theacl);
theacl           1383 source3/modules/vfs_default.c static int vfswrap_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, SMB_ACL_T theacl)
theacl           1385 source3/modules/vfs_default.c 	return sys_acl_set_fd(handle, fsp, theacl);
theacl            257 source3/modules/vfs_full_audit.c 				   SMB_ACL_T theacl, int entry_id,
theacl            278 source3/modules/vfs_full_audit.c 				    SMB_ACL_T theacl,
theacl            295 source3/modules/vfs_full_audit.c 			       SMB_ACL_T theacl );
theacl            298 source3/modules/vfs_full_audit.c 				  SMB_ACL_T theacl);
theacl            300 source3/modules/vfs_full_audit.c 				SMB_ACL_T theacl);
theacl           1879 source3/modules/vfs_full_audit.c 				   SMB_ACL_T theacl, int entry_id,
theacl           1884 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
theacl           1996 source3/modules/vfs_full_audit.c 				    SMB_ACL_T theacl,
theacl           2001 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
theacl           2085 source3/modules/vfs_full_audit.c 			       SMB_ACL_T theacl )
theacl           2089 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
theacl           2100 source3/modules/vfs_full_audit.c 				  SMB_ACL_T theacl)
theacl           2105 source3/modules/vfs_full_audit.c 					       theacl);
theacl           2114 source3/modules/vfs_full_audit.c 				SMB_ACL_T theacl)
theacl           2118 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
theacl            685 source3/modules/vfs_gpfs.c 				    SMB_ACL_T theacl)
theacl            690 source3/modules/vfs_gpfs.c 	gpfs_acl = smb2gpfs_acl(theacl, type);
theacl            703 source3/modules/vfs_gpfs.c 				  SMB_ACL_T theacl)
theacl            705 source3/modules/vfs_gpfs.c 	return gpfsacl_sys_acl_set_file(handle, fsp->fsp_name, SMB_ACL_TYPE_ACCESS, theacl);
theacl            212 source3/modules/vfs_hpuxacl.c 			     SMB_ACL_T theacl)
theacl            238 source3/modules/vfs_hpuxacl.c 	if(!smb_acl_to_hpux_acl(theacl, &hpux_acl, &count, type)) {
theacl            315 source3/modules/vfs_hpuxacl.c 			      SMB_ACL_T theacl)
theacl            335 source3/modules/vfs_hpuxacl.c 			SMB_ACL_TYPE_ACCESS, theacl);
theacl             46 source3/modules/vfs_hpuxacl.h 			     SMB_ACL_T theacl);
theacl             50 source3/modules/vfs_hpuxacl.h 			   SMB_ACL_T theacl);
theacl             44 source3/modules/vfs_irixacl.c 			      SMB_ACL_T theacl)
theacl             52 source3/modules/vfs_irixacl.c 			    SMB_ACL_T theacl)
theacl             33 source3/modules/vfs_irixacl.h 			     SMB_ACL_T theacl);
theacl             37 source3/modules/vfs_irixacl.h 			   SMB_ACL_T theacl);
theacl            478 source3/modules/vfs_onefs_shadow_copy.c 				   SMB_ACL_TYPE_T type, SMB_ACL_T theacl)
theacl            481 source3/modules/vfs_onefs_shadow_copy.c 		    (handle, cpath ?: path, type, theacl),
theacl             83 source3/modules/vfs_posixacl.c 			      SMB_ACL_T theacl)
theacl            103 source3/modules/vfs_posixacl.c 	if ((acl = smb_acl_to_posix(theacl)) == NULL) {
theacl            116 source3/modules/vfs_posixacl.c 			    SMB_ACL_T theacl)
theacl            119 source3/modules/vfs_posixacl.c 	acl_t acl = smb_acl_to_posix(theacl);
theacl             34 source3/modules/vfs_posixacl.h 			      SMB_ACL_T theacl);
theacl             38 source3/modules/vfs_posixacl.h 			    SMB_ACL_T theacl);
theacl             54 source3/modules/vfs_solarisacl.c static bool solaris_acl_sort(SOLARIS_ACL_T theacl, int count);
theacl            137 source3/modules/vfs_solarisacl.c 				SMB_ACL_T theacl)
theacl            155 source3/modules/vfs_solarisacl.c 	if(!smb_acl_to_solaris_acl(theacl, &solaris_acl, &count, type)) {
theacl            222 source3/modules/vfs_solarisacl.c 			      SMB_ACL_T theacl)
theacl            238 source3/modules/vfs_solarisacl.c 	if (!smb_acl_to_solaris_acl(theacl, &solaris_acl, &count, 
theacl             33 source3/modules/vfs_solarisacl.h 				SMB_ACL_T theacl);
theacl             37 source3/modules/vfs_solarisacl.h 			      SMB_ACL_T theacl);
theacl             87 source3/modules/vfs_tru64acl.c 			      SMB_ACL_T theacl)
theacl            111 source3/modules/vfs_tru64acl.c 	tru64_acl = smb_acl_to_tru64_acl(theacl);
theacl            131 source3/modules/vfs_tru64acl.c 			    SMB_ACL_T theacl)
theacl            134 source3/modules/vfs_tru64acl.c         acl_t tru64_acl = smb_acl_to_tru64_acl(theacl);
theacl             33 source3/modules/vfs_tru64acl.h 			      SMB_ACL_T theacl);
theacl             37 source3/modules/vfs_tru64acl.h 			    SMB_ACL_T theacl);
theacl            262 source3/modules/vfs_zfsacl.c 				  SMB_ACL_T theacl)
theacl            269 source3/modules/vfs_zfsacl.c 				int fd, SMB_ACL_T theacl)
theacl             42 source3/registry/reg_dispatcher.c 	SEC_ACL *theacl;
theacl             62 source3/registry/reg_dispatcher.c 	theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace);
theacl             63 source3/registry/reg_dispatcher.c 	if (theacl == NULL) {
theacl             69 source3/registry/reg_dispatcher.c 			   &global_sid_System, NULL, theacl,
theacl            140 source3/rpc_server/srv_svcctl_nt.c 	SEC_ACL *theacl;
theacl            156 source3/rpc_server/srv_svcctl_nt.c 	if ( !(theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )
theacl            161 source3/rpc_server/srv_svcctl_nt.c 				  theacl, &sd_size)) )
theacl             94 source3/services/services_db.c 	SEC_ACL *theacl = NULL;
theacl            112 source3/services/services_db.c 	if ( !(theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )
theacl            117 source3/services/services_db.c 				  theacl, &sd_size)) )
theacl             60 source3/utils/profiles.c 	SEC_ACL *theacl;
theacl             81 source3/utils/profiles.c 	theacl = sd->dacl;
theacl             82 source3/utils/profiles.c 	verbose_output("  DACL: %d entries:\n", theacl->num_aces);
theacl             83 source3/utils/profiles.c 	for ( i=0; i<theacl->num_aces; i++ ) {
theacl             85 source3/utils/profiles.c 			sid_string_tos(&theacl->aces[i].trustee));
theacl             86 source3/utils/profiles.c 		if ( sid_equal( &theacl->aces[i].trustee, s1 ) ) {
theacl             87 source3/utils/profiles.c 			sid_copy( &theacl->aces[i].trustee, s2 );
theacl             90 source3/utils/profiles.c 				sid_string_tos(&theacl->aces[i].trustee));
theacl             95 source3/utils/profiles.c 	theacl = sd->sacl;
theacl             96 source3/utils/profiles.c 	verbose_output("  SACL: %d entries: \n", theacl->num_aces);
theacl             97 source3/utils/profiles.c 	for ( i=0; i<theacl->num_aces; i++ ) {
theacl             99 source3/utils/profiles.c 			sid_string_tos(&theacl->aces[i].trustee));
theacl            100 source3/utils/profiles.c 		if ( sid_equal( &theacl->aces[i].trustee, s1 ) ) {
theacl            101 source3/utils/profiles.c 			sid_copy( &theacl->aces[i].trustee, s2 );
theacl            104 source3/utils/profiles.c 				sid_string_tos(&theacl->aces[i].trustee));
theacl            301 source3/utils/sharesec.c 	SEC_ACL *theacl;
theacl            329 source3/utils/sharesec.c 	if ( !(theacl = make_sec_acl( mem_ctx, NT4_ACL_REVISION, num_ace, ace )) )
theacl            333 source3/utils/sharesec.c 		NULL, NULL, NULL, theacl, sd_size);