Searched refs:acl (Results 76 - 100 of 132) sorted by relevance

123456

/freebsd-10.0-release/tools/regression/pjdfstest/
H A Dpjdfstest.c58 #include <sys/acl.h>
557 acl_t acl, newacl; local
939 acl = acl_get_file(STR(0), ACL_TYPE_NFS4);
940 if (acl == NULL)
944 if (acl == NULL)
950 if (acl_create_entry_np(&acl, &entry, 0))
957 rval = acl_set_file(STR(0), ACL_TYPE_NFS4, acl);
960 acl = acl_get_file(STR(0), ACL_TYPE_NFS4);
961 if (acl == NULL)
/freebsd-10.0-release/etc/rc.d/
H A Dbluetooth109 ngctl mkpeer ${dev}hci: l2cap acl hci \
112 ngctl name ${dev}hci:acl ${dev}l2cap \
/freebsd-10.0-release/lib/libc/posix1e/
H A Dacl_from_text_nfs4.c42 #include <sys/acl.h>
H A Dacl_support_nfs4.c35 #include <sys/acl.h>
H A Dacl_to_text_nfs4.c40 #include <sys/acl.h>
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_acl.h31 #include <sys/acl.h>
100 uint64_t z_acl_extern_obj; /* ext acl pieces */
102 uint16_t z_acl_version; /* acl version */
116 uint64_t z_acl_extern_obj; /* ext acl pieces */
118 uint16_t z_acl_version; /* acl version */
155 uint64_t z_ace_count; /* number of ACEs in this acl node */
/freebsd-10.0-release/sys/i386/ibcs2/
H A Dibcs2_xenix.h13 #include <sys/acl.h>
/freebsd-10.0-release/sys/modules/zfs/
H A DMakefile9 .PATH: ${SUNW}/common/acl
/freebsd-10.0-release/sys/netgraph/bluetooth/hci/
H A Dng_hci_var.h158 hook_p acl; /* upstream hook */ member in struct:ng_hci_unit
H A Dng_hci_misc.c99 if (hook != unit->acl && hook != unit->sco)
106 if (hook == unit->acl) {
H A Dng_hci_cmds.c704 ng_hci_node_is_up(unit->node, unit->acl, NULL, 0);
720 ng_hci_node_is_up(unit->node, unit->acl, NULL, 0);
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_proto.c350 static const struct ieee80211_aclator *acl = NULL; variable in typeref:struct:ieee80211_aclator
355 printf("wlan: %s acl policy registered\n", iac->iac_name);
356 acl = iac;
362 if (acl == iac)
363 acl = NULL;
364 printf("wlan: %s acl policy unregistered\n", iac->iac_name);
370 if (acl == NULL)
372 return acl != NULL && strcmp(acl->iac_name, name) == 0 ? acl
[all...]
H A Dieee80211_ioctl.c592 const struct ieee80211_aclator *acl = vap->iv_acl; local
594 return (acl == NULL ? EINVAL : acl->iac_getioctl(vap, ireq));
1606 const struct ieee80211_aclator *acl = vap->iv_acl; local
1614 if (acl == NULL) {
1615 acl = ieee80211_aclator_get("mac");
1616 if (acl == NULL || !acl->iac_attach(vap))
1618 vap->iv_acl = acl;
1621 acl
1630 const struct ieee80211_aclator *acl = vap->iv_acl; local
[all...]
/freebsd-10.0-release/sys/sys/
H A Dsysproto.h13 #include <sys/acl.h>
982 char aclp_l_[PADL_(struct acl *)]; struct acl * aclp; char aclp_r_[PADR_(struct acl *)];
987 char aclp_l_[PADL_(struct acl *)]; struct acl * aclp; char aclp_r_[PADR_(struct acl *)];
992 char aclp_l_[PADL_(struct acl *)]; struct acl * aclp; char aclp_r_[PADR_(struct acl *)];
[all...]
H A Dvnode.h44 #include <sys/acl.h>
637 struct acl *aclp, accmode_t accmode, struct ucred *cred,
640 gid_t file_gid, struct acl *acl, accmode_t accmode,
/freebsd-10.0-release/sys/security/mac/
H A Dmac_framework.h92 #include <sys/acl.h> /* XXX acl_type_t */
418 acl_type_t type, struct acl *acl);
H A Dmac_vfs.c786 "struct vnode *", "acl_type_t", "struct acl *");
790 struct acl *acl)
796 MAC_POLICY_CHECK(vnode_check_setacl, cred, vp, vp->v_label, type, acl);
797 MAC_CHECK_PROBE4(vnode_check_setacl, error, cred, vp, type, acl);
789 mac_vnode_check_setacl(struct ucred *cred, struct vnode *vp, acl_type_t type, struct acl *acl) argument
H A Dmac_policy.h66 #include <sys/acl.h> /* XXX acl_type_t */
69 struct acl;
626 struct acl *acl);
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c37 #include <sys/acl.h>
148 struct archive_acl acl; member in struct:fixup_entry
700 archive_acl_copy(&fe->acl, archive_entry_acl(entry));
2176 -1, p->name, &p->acl);
2184 archive_acl_clear(&p->acl);
3408 acl_t acl, dfacl = NULL; local
3411 acl = acl_get_fd(tmpfd);
3412 if (acl == NULL) {
3417 "Failed to get metadata(acl)");
3421 dfacl = acl_dup(acl);
[all...]
H A Darchive_read_support_format_tar.c847 char *acl, *p; local
870 p = acl = tar->acl_text.s;
872 while (*p != '\0' && p < acl + size) {
903 if (p >= acl + size) {
910 size -= (p - acl);
911 acl = p;
913 while (*p != '\0' && p < acl + size)
922 archive_strncpy(&(tar->localname), acl, p - acl);
1759 if (strcmp(key, "SCHILY.acl
[all...]
/freebsd-10.0-release/sbin/nvmecontrol/
H A Didentify.c78 printf("Abort Command Limit: %d\n", cdata->acl+1);
/freebsd-10.0-release/contrib/unbound/daemon/
H A Dworker.c188 me += acl_list_get_mem(worker->daemon->acl);
733 enum acl_access acl; local
740 acl = acl_list_lookup(worker->daemon->acl, &repinfo->addr,
742 if(acl == acl_deny) {
747 } else if(acl == acl_refuse) {
870 acl != acl_allow_snoop ) {
/freebsd-10.0-release/crypto/heimdal/kdc/
H A Dpkinit.c1709 const HDB_Ext_PKINIT_acl *acl; local
1783 ret = hdb_entry_get_pkinit_acl(&client->entry, &acl);
1784 if (ret == 0 && acl != NULL) {
1789 for (i = 0; i < acl->len; i++) {
1790 if (strcmp(*subject_name, acl->val[0].subject) != 0)
1794 if (acl->val[0].issuer)
1796 if (acl->val[0].anchor)
/freebsd-10.0-release/contrib/wpa/hostapd/
H A Dconfig_file.c120 struct mac_acl_entry **acl, int *num)
170 newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
177 *acl = newacl;
178 os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
179 (*acl)[*num].vlan_id = vlan_id;
185 qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
119 hostapd_config_read_maclist(const char *fname, struct mac_acl_entry **acl, int *num) argument
/freebsd-10.0-release/sys/dev/sound/pci/
H A Denvy24.c109 u_int8_t scfg, acl, i2s, spdif; member in struct:cfg_info
607 buff->acl = envy24_rdrom(sc, ENVY24_E2PROM_ACL);
2334 if ((sc->cfg->acl & PCIM_ACL_MTC) == 0) {
2336 if (sc->cfg->acl & PCIM_ACL_OMODE)
2341 if (sc->cfg->acl & PCIM_ACL_IMODE)
2437 pci_write_config(sc->dev, PCIR_ACL, sc->cfg->acl, 1);

Completed in 422 milliseconds

123456