Searched refs:acl (Results 126 - 150 of 195) sorted by relevance

12345678

/macosx-10.10.1/Heimdal-398.1.2/lib/akadmin/
H A Dadmin.c456 CFArrayRef acl = NULL;
466 acl = HeimODCopyACL(node, record, NULL);
467 if (acl == NULL) {
474 for (n = 0; n < CFArrayGetCount(acl); n++) {
475 CFStringRef s = CFArrayGetValueAtIndex(acl, n);
481 if (acl)
482 CFRelease(acl);
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dpkinit.c1815 const HDB_Ext_PKINIT_acl *acl; local
1922 ret = hdb_entry_get_pkinit_acl(&client->entry, &acl);
1923 if (ret == 0 && acl != NULL) {
1925 for (i = 0; i < acl->len; i++) {
1928 ret = hx509_parse_name(context->hx509ctx, acl->val[i].subject, &n);
1937 if (acl->val[i].issuer) {
1939 *acl->val[i].issuer, &n);
1949 if (acl->val[i].anchor) {
1951 *acl->val[i].anchor, &n);
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_format_tar.c739 char *acl, *p; local
762 p = acl = tar->acl_text.s;
764 while (*p != '\0' && p < acl + size) {
795 if (p >= acl + size) {
802 size -= (p - acl);
803 acl = p;
805 while (*p != '\0' && p < acl + size)
808 wp = utf8_decode(tar, acl, p - acl);
1491 if (strcmp(key, "SCHILY.acl
[all...]
H A Darchive_write_disk.c34 #include <sys/acl.h>
2345 acl_t acl; local
2360 acl = acl_init(entries);
2363 acl_create_entry(&acl, &acl_entry);
2409 if (fd >= 0 && acl_type == ACL_TYPE_ACCESS && acl_set_fd(fd, acl) == 0)
2414 if (fd >= 0 && acl_set_fd_np(fd, acl, acl_type) == 0)
2419 if (acl_set_file(name, acl_type, acl) != 0) {
2420 archive_set_error(&a->archive, errno, "Failed to set %s acl", tname);
2423 acl_free(acl);
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dinterfacemgr.c29 #include <dns/acl.h>
498 REQUIRE(elt && elt->acl);
499 return dns_acl_isany(elt->acl);
764 (void)dns_acl_match(&listen_netaddr, NULL, le->acl,
797 NULL, ele->acl,
H A Dzoneconf.c32 #include <dns/acl.h>
90 dns_acl_t **aclp = NULL, *acl = NULL; local
166 dns_zone_getmctx(zone), 0, &acl);
169 (*setzacl)(zone, acl);
173 dns_acl_attach(acl, aclp);
175 dns_acl_detach(&acl);
H A Dclient.c1291 allowed(isc_netaddr_t *addr, dns_name_t *signer, dns_acl_t *acl) { argument
1295 if (acl == NULL)
1297 result = dns_acl_match(addr, signer, acl, &ns_g_server->aclenv,
2635 dns_acl_t *acl, isc_boolean_t default_allow)
2641 if (acl == NULL) {
2653 result = dns_acl_match(netaddr, client->signer, acl,
2671 const char *opname, dns_acl_t *acl,
2681 acl, default_allow);
2634 ns_client_checkaclsilent(ns_client_t *client, isc_netaddr_t *netaddr, dns_acl_t *acl, isc_boolean_t default_allow) argument
2670 ns_client_checkacl(ns_client_t *client, isc_sockaddr_t *sockaddr, const char *opname, dns_acl_t *acl, isc_boolean_t default_allow, int log_level) argument
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A DEAPKeychainUtil.c338 SecACLRef acl; local
360 acl = (SecACLRef)CFArrayGetValueAtIndex(acl_list, 0);
361 status = SecACLCopyContents(acl, &app_list, &prompt_description,
416 status = SecACLSetContents(acl, new_list, prompt_description,
424 status = SecACLSetContents(acl, trusted_apps,
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dnamed.vim31 syn sync match namedSync grouphere NONE "^(zone|controls|acl|key)"
49 syn keyword namedKeyword acl key nextgroup=namedIntIdent skipwhite
69 " + these keywords are contained within `key' and `acl' sections
H A Dfstab.vim87 syn keyword fsOptionsKeywords contained acl bsddf minixdf debug grpid bsdgroups minixdf noacl nocheck nogrpid oldalloc orlov sysvgroups nouid32 nobh user_xattr nouser_xattr
95 syn keyword fsOptionsKeywords contained noload user_xattr nouser_xattr acl noacl
109 syn keyword fsOptionsKeywords contained noload extents orlov oldalloc user_xattr nouser_xattr acl noacl reservation noreservation bsddf minixdf check=none nocheck debug grpid nogroupid sysvgroups bsdgroups quota noquota grpquota usrquota bh nobh
/macosx-10.10.1/Security-57031.1.35/securityd/tests/
H A Dtestacls.cpp58 // get the acl entry and verify
171 const AclEntryInfo &acl = infos[0]; local
172 const TypedList &read = acl.proto().subject();
213 // get the acl entry and verify
321 // get the acl entry and verify
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dkcache.c116 SecACLRef acl;
127 acl = (SecACLRef)CFArrayGetValueAtIndex(aclList, 0);
129 ret = SecACLCopyContents(acl, &appList, &promptDescription, &promptSelector);
132 (void)SecACLSetContents(acl, NULL, promptDescription, promptSelector);
H A DNTMakefile38 $(OBJ)\acl.obj \
181 acl.c \
/macosx-10.10.1/Libc-1044.1.2/sys/
H A Dstatx_np.c24 #include <sys/acl.h>
/macosx-10.10.1/Libc-1044.1.2/xcodescripts/
H A Dheaders.sh150 SYS_INSTHDRS=( ${SRCROOT}/include/sys/acl.h ${SRCROOT}/include/sys/statvfs.h )
199 ${SRCROOT}/include/sys/acl.h
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Ddatabase.cpp189 SecurityServerAcl &Database::acl() function in class:Database
H A Ddatabase.h151 virtual SecurityServerAcl &acl();
H A Dkcdatabase.h218 SecurityServerAcl &acl();
H A Dtokendatabase.h99 SecurityServerAcl &acl(); // it's our Token
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dcheck-pkinit.in100 ${kadmin} modify --pkinit-acl="CN=baz,DC=test,DC=h5l,DC=se" baz@${R} || exit 1
/macosx-10.10.1/libarchive-30/libarchive/contrib/
H A Dlibarchive.1aix53.spec137 - BR: acl-devel,attr-devel
H A Dlibarchive.spec124 - BR: acl-devel,attr-devel
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A DMakefile.in33 phonetic.c acl.c str2filter.c aclparse.c init.c user.c \
52 phonetic.o acl.o str2filter.o aclparse.o init.o user.o \
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/scripts/
H A Ddefines.sh87 ACLCONF=$DATADIR/slapd-acl.conf
331 ACLOUTMASTER=$DATADIR/acl.out.master
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Ddns64.c27 #include <dns/acl.h>

Completed in 326 milliseconds

12345678