HomeSort by relevance Sort by last modified time
    Searched defs:acl (Results 1 - 25 of 38) sorted by null

1 2

  /libcore/luni/src/main/java/java/security/acl/
AclNotFoundException.java 18 package java.security.acl;
22 * Control List</i> (ACL) is made.
LastOwnerException.java 18 package java.security.acl;
NotOwnerException.java 18 package java.security.acl;
25 * @see Acl
Owner.java 18 package java.security.acl;
25 * @see Acl
Permission.java 18 package java.security.acl;
Group.java 18 package java.security.acl;
Acl.java 18 package java.security.acl;
24 * The <i>Access Control List</i> (<b>ACL</b>) interface definition.
26 * An ACL is a set of {@link AclEntry} objects.
32 * An {@code Acl} has a list of owners ({@link Owner}) which are principals as
33 * well {@code Principal}. Only those principals which are the {@code Acl}'s
35 * Acl}.
37 * The <i>ACL</i> has to conform to the following rules:
51 public interface Acl extends Owner {
54 * Sets the name of this <i>ACL</i> instance.
62 * <i>ACL</i>
    [all...]
AclEntry.java 18 package java.security.acl;
32 * Set the principal for this ACL entry.
34 * The principal for an ACL entry can only be set once.
37 * the principal for this ACL entry.
44 * Returns the principal of this ACL entry.
46 * @return the principal of this ACL entry, or null if none is set.
51 * Sets this ACL entry to be <i>negative</i>.
53 * The permissions in this ACL entry will be denied to the principal
56 * Note: An ACL entry is <i>positive</i> by default and can only become
62 * Returns whether this ACL entry is <i>negative</i>
    [all...]
  /libcore/luni/src/test/java/tests/security/acl/
AclNotFoundException2Test.java 18 package tests.security.acl;
22 import java.security.acl.AclNotFoundException;
27 * java.security.acl.AclNotFoundException#AclNotFoundException()
30 // Test for method java.security.acl.AclNotFoundException()
38 + "'java.security.acl.AclNotFoundException' but was "
40 "java.security.acl.AclNotFoundException",
AclNotFoundExceptionTest.java 23 package tests.security.acl;
27 import java.security.acl.AclNotFoundException;
LastOwnerException2Test.java 18 package tests.security.acl;
22 import java.security.acl.LastOwnerException;
27 * java.security.acl.LastOwnerException#LastOwnerException()
30 // Test for method java.security.acl.LastOwnerException()
35 + "'java.security.acl.LastOwnerException' but was "
36 + e.toString(), "java.security.acl.LastOwnerException", e
LastOwnerExceptionTest.java 23 package tests.security.acl;
27 import java.security.acl.LastOwnerException;
NotOwnerException2Test.java 18 package tests.security.acl;
22 import java.security.acl.NotOwnerException;
27 * java.security.acl.NotOwnerException#NotOwnerException()
30 // Test for method java.security.acl.NotOwnerException()
35 + "'java.security.acl.NotOwnerException' but was "
36 + e.toString(), "java.security.acl.NotOwnerException", e
NotOwnerExceptionTest.java 23 package tests.security.acl;
27 import java.security.acl.NotOwnerException;
  /ndk/sources/host-tools/sed-4.2.1/lib/
copy-acl.c 1 /* copy-acl.c - copy access control list from one file to another file
22 #include "acl.h"
24 #include "acl-internal.h"
51 acl_t acl; local
55 acl = acl_get_fd (source_desc);
57 acl = acl_get_file (src_name, ACL_TYPE_ACCESS);
58 if (acl == NULL)
67 ret = acl_set_fd (dest_desc, acl);
69 ret = acl_set_file (dst_name, ACL_TYPE_ACCESS, acl);
74 if (ACL_NOT_WELL_SUPPORTED (errno) && !acl_access_nontrivial (acl))
    [all...]
set-mode-acl.c 1 /* set-mode-acl.c - set access control list equivalent to a mode
22 #include "acl.h"
24 #include "acl-internal.h"
65 by acl_set_file, but acl_set_file with an empty acl is
75 acl_t acl; local
80 acl = acl_from_mode (mode);
81 if (!acl)
86 /* If we were to create the ACL using the functions acl_init(),
108 acl = acl_from_text (acl_text);
109 if (!acl)
    [all...]
file-has-acl.c 22 #include "acl.h"
24 #include "acl-internal.h"
31 /* ACL is an ACL, from a file, stored as type ACL_TYPE_EXTENDED.
32 Return 1 if the given ACL is non-trivial.
35 acl_extended_nontrivial (acl_t acl)
37 /* acl is non-trivial if it is non-empty. */
38 return (acl_entries (acl) > 0);
43 /* ACL is an ACL, from a file, stored as type ACL_TYPE_ACCESS
301 acl_t acl = acl_get_file (name, ACL_TYPE_EXTENDED); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/acl/
AclNotFoundExceptionTest.java 22 package org.apache.harmony.security.tests.java.security.acl;
24 import java.security.acl.AclNotFoundException;
36 * @tests java.security.acl.AclNotFoundException#AclNotFoundException()
LastOwnerExceptionTest.java 18 package org.apache.harmony.security.tests.java.security.acl;
20 import java.security.acl.LastOwnerException;
32 * @tests java.security.acl.LastOwnerException#LastOwnerException()
NotOwnerExceptionTest.java 18 package org.apache.harmony.security.tests.java.security.acl;
20 import java.security.acl.NotOwnerException;
32 * @tests java.security.acl.NotOwnerException#NotOwnerException()
  /external/qemu/
acl.c 27 #include "acl.h"
52 qemu_acl *acl; local
54 acl = qemu_acl_find(aclname);
55 if (acl)
56 return acl;
58 acl = qemu_malloc(sizeof(*acl));
59 acl->aclname = qemu_strdup(aclname);
63 acl->defaultDeny = 1;
65 acl->nentries = 0
    [all...]
vnc-tls.h 34 #include "acl.h"
47 qemu_acl *acl; member in struct:VncDisplayTLS
vnc-android.c 31 #include "acl.h"
2200 int acl = 0; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32filesystem.cc 92 // SECURITY_DESCRIPTOR specifying an ACL. This code is mostly based upon
135 // Compute size needed for an ACL that allows access to just this user.
136 int acl_size = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) - sizeof(DWORD) +
141 PACL acl = reinterpret_cast<PACL>(acl_bytes.get()); local
142 memset(acl, 0, acl_size);
143 if (!::InitializeAcl(acl, acl_size, ACL_REVISION)) {
149 if (!::AddAccessAllowedAce(acl,
165 // Put the ACL in it.
168 acl,
  /external/tcpdump/
print-rx.c 87 { 131, "fetch-acl" },
90 { 134, "store-acl" },
811 case 131: /* Fetch ACL */
835 case 134: /* Store ACL */
947 case 131: /* Fetch ACL */
997 * Print out an AFS ACL string. An AFS ACL is a string that has the
1005 * positive and negative ACL's in the string. The uid/aclbits pair are
1007 * representing a logical OR of all the ACL permission bits
1013 int pos, neg, acl; local
    [all...]

Completed in 1097 milliseconds

1 2