Home
last modified time | relevance | path

Searched refs:acl (Results 1 – 17 of 17) sorted by relevance

/vim-8.2.3635/runtime/syntax/
H A Dsquid.vim23 syn keyword squidConf acl always_direct announce_host announce_period
107 " Keywords for the acl-config
115 syn match squidStr "\(^\s*acl\s\+\S\+\s\+\(\S*_regex\|re[pq]_mime_type\|browser\|_domain\|user\)\+\…
116 syn match squidRegexOpt contained "\(^\s*acl\s\+\S\+\s\+\S\+\(_regex\|_mime_type\)\s\+\)\@<=[-+]i\s…
H A Dnamed.vim23 syn sync match namedSync grouphere NONE "^(zone|controls|acl|key)"
40 syn keyword namedKeyword acl key nextgroup=namedIntIdent skipwhite
60 " + these keywords are contained within `key' and `acl' sections
H A Dfstab.vim101 syn keyword fsOptionsKeywords contained acl bsddf minixdf debug grpid bsdgroups minixdf nocheck nog…
109 syn keyword fsOptionsKeywords contained noload user_xattr nouser_xattr acl
123 syn keyword fsOptionsKeywords contained noload extents orlov oldalloc user_xattr nouser_xattr acl n…
H A Dsamba.vim27 syn keyword sambaKeyword contained account acl action add address admin aliases
/vim-8.2.3635/src/proto/
H A Dos_win32.pro40 void mch_set_acl(char_u *fname, vim_acl_T acl);
41 void mch_free_acl(vim_acl_T acl);
/vim-8.2.3635/src/
H A Dbufwrite.c687 vim_acl_T acl = NULL; // ACL copied from original file to in buf_write() local
1143 acl = mch_get_acl(fname); in buf_write()
1499 mch_set_acl(backup, acl); in buf_write()
2252 mch_set_acl(wfname, acl); in buf_write()
2518 mch_free_acl(acl); in buf_write()
H A Dfileio.c3714 vim_acl_T acl; // ACL from original file in vim_rename() local
3839 acl = mch_get_acl(from); in vim_rename()
3845 mch_free_acl(acl); in vim_rename()
3857 mch_free_acl(acl); in vim_rename()
3868 mch_free_acl(acl); in vim_rename()
3893 mch_set_acl(to, acl); in vim_rename()
3894 mch_free_acl(acl); in vim_rename()
H A Dconfigure.ac3295 util/debug.h util/msg18n.h frame.h sys/acl.h \
3971 AC_MSG_CHECKING(--disable-acl argument)
3972 AC_ARG_ENABLE(acl, optenable
3985 # include <sys/acl.h>
3987 acl_t acl;], [acl = acl_get_file("foo", ACL_TYPE_ACCESS);
3988 acl_set_file("foo", ACL_TYPE_ACCESS, acl);
3989 acl_free(acl);],
3997 # include <sys/acl.h>
3998 #endif], [acl("foo", GETACLCNT, 0, NULL);
4010 # include <sys/acl.h>
[all …]
H A Dos_win32.c3598 is_acl_inherited(PACL acl) in is_acl_inherited() argument
3605 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation); in is_acl_inherited()
3608 GetAce(acl, i, (LPVOID *)&ace); in is_acl_inherited()
3622 mch_set_acl(char_u *fname, vim_acl_T acl) in mch_set_acl() argument
3625 struct my_acl *p = (struct my_acl *)acl; in mch_set_acl()
3666 mch_free_acl(vim_acl_T acl) in mch_free_acl() argument
3669 struct my_acl *p = (struct my_acl *)acl; in mch_free_acl()
H A Dundo.c1808 vim_acl_T acl; in u_write_undo() local
1811 acl = mch_get_acl(buf->b_ffname); in u_write_undo()
1812 mch_set_acl(file_name, acl); in u_write_undo()
1813 mch_free_acl(acl); in u_write_undo()
H A Dos_unix.c3020 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) in mch_get_acl()
3026 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) in mch_get_acl()
3036 struct acl *aclent; in mch_get_acl()
3038 aclsize = sizeof(struct acl); in mch_get_acl()
3081 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, in mch_set_acl()
3085 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); in mch_set_acl()
/vim-8.2.3635/runtime/doc/
H A Dvarious.txt330 *+acl* |ACL| support included
H A Dtags1283 +acl various.txt /*+acl*
H A Dversion6.txt6954 Solution: When the "acl" library is used, check if the "attr" library is
8072 Solution: Add a configure argument to disable ACL "--disable-acl". (Thierry
9684 feature. Fix that "--enable-acl" reported "yes" confusingly.
H A Deval.txt12305 acl Compiled with |ACL| support.
H A Dversion8.txt551 Problem: Cannot find out if "acl" and "xpm" features are supported.
552 Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
/vim-8.2.3635/src/auto/
H A Dconfigure1518 --disable-acl No check for ACL support.
11126 util/debug.h util/msg18n.h frame.h sys/acl.h \