HomeSort by: relevance | last modified time | path
    Searched refs:ace (Results 1 - 16 of 16) sorted by relevancy

  /src/share/man/man4/man4.emips/
Makefile 4 MAN= ace.4 autoconf.4 dz.4 ebus.4 eclock.4 enic.4 intro.4
  /src/sys/arch/emips/ebus/
ace_ebus.c 197 static void ace_set_geometry(struct ace_softc *ace);
212 if (strcmp("ace", d->ia_name) != 0)
223 struct ace_softc *ace = device_private(self); local
227 ace->sc_dev = self;
232 ace->sc_dr = (struct _Sac *)ia->ia_vaddr;
234 printf(" virt=%p", (void*)ace->sc_dr);
236 printf(" : System ACE\n");
239 ace_ebus_intr, ace); local
244 ace, NULL, "%s", device_xname(ace->sc_dev))
1714 struct ace_softc *ace; local
1795 struct ace_softc *ace = arg; local
1902 struct ace_softc *ace = v; local
1936 struct ace_softc *ace; local
2016 struct ace_softc *ace = device_lookup_private(&ace_cd, ACEUNIT(dev)); local
2141 struct ace_softc *ace = device_lookup_private(&ace_cd, ACEUNIT(dev)); local
2279 struct ace_softc *ace; local
2314 struct ace_softc *ace; \/* disk unit to do the I\/O *\/ local
    [all...]
  /src/sys/fs/nfs/common/
nfs_commonacl.c 43 * Handle xdr for an ace.
185 * Turn an NFSv4 ace mask into R/W/X flag bits.
282 * This function builds an NFS ace.
286 enum vtype type, int group, int owner, struct acl_entry *ace)
295 * Fill in the ace type.
297 if (ace->ae_entry_type & ACL_ENTRY_TYPE_ALLOW)
299 else if (ace->ae_entry_type & ACL_ENTRY_TYPE_DENY)
301 else if (ace->ae_entry_type & ACL_ENTRY_TYPE_AUDIT)
310 if (ace->ae_flags & ACL_ENTRY_FILE_INHERIT)
312 if (ace->ae_flags & ACL_ENTRY_DIRECTORY_INHERIT
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_disk_acl_sunos.c 176 ace_t *ace; local
200 * Create list of trivial ace's to be compared
287 ace = &((ace_t *)aclp)[p];
292 if (ace->a_flags != tace[i].a_flags ||
293 ace->a_type != tace[i].a_type ||
294 (ace->a_access_mask != tace[i].a_access_mask &&
296 ace->a_access_mask !=
325 ace_t *ace; local
338 ace = &((ace_t *)aclp)[e];
339 ae_id = ace->a_who
451 ace_t *ace; local
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs_byteswap.c 34 zfs_oldace_byteswap(ace_t *ace, int ace_cnt)
38 for (i = 0; i != ace_cnt; i++, ace++) {
39 ace->a_who = BSWAP_32(ace->a_who);
40 ace->a_access_mask = BSWAP_32(ace->a_access_mask);
41 ace->a_flags = BSWAP_16(ace->a_flags);
42 ace->a_type = BSWAP_16(ace->a_type)
    [all...]
zfs_replay.c 958 ace_t *ace = (ace_t *)(lr + 1); /* ace array follows lr_acl_t */ local
966 zfs_oldace_byteswap(ace, lr->lr_aclcnt);
977 vsa.vsa_aclentp = ace;
1006 ace_t *ace = (ace_t *)(lr + 1); local
1014 zfs_ace_byteswap(ace, lr->lr_acl_bytes, B_FALSE);
1016 byteswap_uint64_array((caddr_t)ace +
1028 vsa.vsa_aclentp = ace;
1033 void *fuidstart = (caddr_t)ace +
zvol.c 264 static int zvol_geom_access(struct g_provider *pp, int acr, int acw, int ace);
2987 zvol_geom_access(struct g_provider *pp, int acr, int acw, int ace)
2997 KASSERT((acr >= 0 && acw >= 0 && ace >= 0) ||
2998 (acr <= 0 && acw <= 0 && ace <= 0),
2999 ("Unsupported access request to %s (acr=%d, acw=%d, ace=%d).",
3000 pp->name, acr, acw, ace));
3003 if (acr <= 0 && acw <= 0 && ace <= 0)
3009 * We don't pass FEXCL flag to zvol_open()/zvol_close() if ace != 0,
3017 count = acr + acw + ace;
3022 if (acr != 0 || ace != 0
    [all...]
vdev_geom.c 306 if (cp->acr == 0 && cp->ace == 0) {
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/socionext/
Makefile 6 uniphier-pro4-ace.dtb \
  /src/sys/arch/emips/stand/boot/
Makefile 10 SRCS+= enic.c ace.c raw.c init_board.c
  /src/external/bsd/libarchive/dist/libarchive/test/
test_acl_platform_nfs4.c 435 acl_match(ace_t *ace, struct myacl_t *myacl)
439 perms = acl_permset_to_bitmap(ace->a_access_mask) | acl_flagset_to_bitmap(ace->a_flags);
444 switch (ace->a_type) {
465 if (ace->a_flags & ACE_OWNER) {
468 } else if (ace->a_flags & ACE_GROUP) {
471 } else if (ace->a_flags & ACE_EVERYONE) {
474 } else if (ace->a_flags & ACE_IDENTIFIER_GROUP) {
477 if ((gid_t)myacl->qual != ace->a_who)
482 if ((uid_t)myacl->qual != ace->a_who
    [all...]
  /src/external/cddl/osnet/dist/common/acl/
acl_common.c 354 * always go in the DENY ACE.
575 * ace. To do this, we invert the mask (found
577 * DENY ace access_mask.
620 * Set the corresponding deny for the group ace.
624 * the allow ace.
627 * skip ahead for the deny ace, here.
804 acevals_find(ace_t *ace, avl_tree_t *avl, int *num)
809 key.key = ace->a_who;
818 acevals_init(rc, ace->a_who);
1266 ln_ace_to_aent(ace_t *ace, int n, uid_t owner, gid_t group
    [all...]
  /src/external/cddl/osnet/dist/uts/common/sys/
acl.h 45 typedef struct ace { struct
195 /* cmd's to manipulate ace acls. */
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/
Makefile 149 dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588s-gameforce-ace.dtb
  /src/etc/
MAKEDEV.tmpl 1214 ace[0-9]*)
1215 name=ace; unit=${i#ace}; blk=%ace_blk%; chr=%ace_chr%
  /src/external/public-domain/sqlite/dist/
shell.c 25344 char ace[3] = "\\?"; local
25368 ace[1] = cbsSay;
25369 cli_puts(ace, out);
25373 ace[1] = (char)c;
25374 cli_puts(ace+1, out);
25389 char ace[3] = "\\?"; local
25413 ace[1] = cbsSay;
25414 sqlite3_str_appendall(out,ace);
25418 ace[1] = (char)c;
25419 sqlite3_str_appendall(out, ace+1)
    [all...]

Completed in 74 milliseconds