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

1 2 3

  /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;
35 * @tests java.security.acl.AclNotFoundException#AclNotFoundException()
LastOwnerExceptionTest.java 18 package org.apache.harmony.security.tests.java.security.acl;
20 import java.security.acl.LastOwnerException;
31 * @tests java.security.acl.LastOwnerException#LastOwnerException()
NotOwnerExceptionTest.java 18 package org.apache.harmony.security.tests.java.security.acl;
20 import java.security.acl.NotOwnerException;
31 * @tests java.security.acl.NotOwnerException#NotOwnerException()
  /external/chromium_org/sandbox/win/src/
acl.cc 5 #include "sandbox/win/src/acl.h"
29 TOKEN_DEFAULT_DACL* acl = local
31 default_dacl->reset(acl);
40 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode,
41 ACCESS_MASK access, ACL** new_dacl) {
67 ACL* new_dacl = NULL;
  /external/qemu/ui/
vnc-tls.h 34 #include "qemu/acl.h"
47 qemu_acl *acl; member in struct:VncDisplayTLS
vnc-android.c 32 #include "qemu/acl.h"
2199 int acl = 0; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
win32filesystem.cc 75 // SECURITY_DESCRIPTOR specifying an ACL. This code is mostly based upon
118 // Compute size needed for an ACL that allows access to just this user.
119 int acl_size = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) - sizeof(DWORD) +
124 PACL acl = reinterpret_cast<PACL>(acl_bytes.get()); local
125 memset(acl, 0, acl_size);
126 if (!::InitializeAcl(acl, acl_size, ACL_REVISION)) {
132 if (!::AddAccessAllowedAce(acl,
148 // Put the ACL in it.
151 acl,
  /external/tcpdump/
print-rx.c 87 { 131, "fetch-acl" },
90 { 134, "store-acl" },
844 case 131: /* Fetch ACL */
868 case 134: /* Store ACL */
1001 case 131: /* Fetch ACL */
1051 * Print out an AFS ACL string. An AFS ACL is a string that has the
1059 * positive and negative ACL's in the string. The uid/aclbits pair are
1061 * representing a logical OR of all the ACL permission bits
1067 int pos, neg, acl; local
    [all...]

Completed in 381 milliseconds

1 2 3