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

1 2 3 4

  /libcore/ojluni/src/main/java/java/security/acl/
Permission.java 26 package java.security.acl;
AclNotFoundException.java 26 package java.security.acl;
30 * non-existent ACL (Access Control List).
LastOwnerException.java 26 package java.security.acl;
32 * @see java.security.acl.Owner#deleteOwner
NotOwnerException.java 26 package java.security.acl;
Owner.java 26 package java.security.acl;
31 * Interface for managing owners of Access Control Lists (ACLs) or ACL
32 * configurations. (Note that the Acl interface in the
33 * <code> java.security.acl </code> package extends this Owner
37 * @see java.security.acl.Acl
43 * Adds an owner. Only owners can modify ACL contents. The caller
44 * principal must be an owner of the ACL in order to invoke this method.
46 * configured at ACL construction time.
49 * of the ACL
    [all...]
Group.java 26 package java.security.acl;
Acl.java 26 package java.security.acl;
32 * Interface representing an Access Control List (ACL). An Access
36 * An ACL can be thought of as a data structure with multiple ACL
37 * entries. Each ACL entry, of interface type AclEntry, contains a
40 * group). Additionally, each ACL entry is specified as being either
45 * The ACL Entries in each ACL observe the following rules:<p>
47 * <ul> <li>Each principal can have at most one positive ACL entry and
48 * one negative entry; that is, multiple positive or negative ACL
    [all...]
AclEntry.java 26 package java.security.acl;
33 * Control List (ACL).<p>
35 * An ACL can be thought of as a data structure with multiple ACL entry
36 * objects. Each ACL entry object contains a set of permissions associated
38 * an individual user or a group). Additionally, each ACL entry is specified
41 * are to be denied. Each principal can have at most one positive ACL entry
42 * and one negative entry; that is, multiple positive or negative ACL
45 * Note: ACL entries are by default positive. An entry becomes a
50 * @see java.security.acl.Ac
    [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;
  /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-trace/catapult/telemetry/telemetry/util/mac/
determine_if_keychain_entry_is_decryptable.c 59 SecACLRef acl = (SecACLRef)CFArrayGetValueAtIndex(acl_list, i); local
64 status = SecACLCopyContents(acl, &application_list, &description,
75 // Check whether this acl gives decryption access to all applications.
89 // No acl was found that gave decryption access to all applications.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/
test_versioning.py 29 from boto.gs import acl namespace
147 and e.scope.type == acl.ALL_USERS]
149 and e.scope.type == acl.ALL_USERS]
180 aclo = acl.ACL()
192 and e.scope.type == acl.ALL_USERS]
194 and e.scope.type == acl.ALL_USERS]
229 and e.scope.type == acl.ALL_USERS]
231 and e.scope.type == acl.ALL_USERS]
  /external/autotest/cli/
acl.py 5 The acl module contains the objects and methods used to
9 add: adds acl(s), or users or hosts to an ACL
10 remove: deletes acl(s), or users or hosts from an ACL
11 list: lists acl(s)
23 class acl(topic_common.atest): class in inherits:topic_common.atest
24 """ACL class
25 atest acl [create|delete|list|add|remove] <options>"""
28 msg_topic = 'ACL'
    [all...]
acl_unittest.py 6 """Test for acl."""
11 from autotest_lib.cli import acl, cli_mock namespace
16 acl_list = acl.acl_list()
21 self.assertEqualNoOrder(['acl%s' % x for x in range(8)],
27 acl_list = acl.acl_list()
34 acl_list = acl.acl_list()
41 acl_list = acl.acl_list()
81 self.run_cmd(argv=['atest', 'acl', 'list', '-v'],
92 self.run_cmd(argv=['atest', 'acl', 'list', 'acl0'],
103 self.run_cmd(argv=['atest', 'acl', 'list', '-v', '--user', 'user0']
    [all...]
  /external/skia/platform_tools/android/apps/visualbench/src/main/jni/
main.cpp 81 jclass acl = env->GetObjectClass(me); //class pointer of NativeActivity local
82 jmethodID giid = env->GetMethodID(acl, "getIntent", "()Landroid/content/Intent;");
  /libcore/ojluni/src/main/java/sun/reflect/misc/
ReflectUtil.java 109 ClassLoader acl = cl; local
111 acl = acl.getParent();
112 if (p == acl) {
115 } while (acl != null);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
acl.py 49 """A list of Google Cloud Storage predefined (canned) ACL strings."""
52 """A list of supported ACL permissions."""
55 class ACL(object):
62 def acl(self): member in class:ACL
77 # Method with same signature as boto.s3.acl.ACL.add_email_grant(), to allow
84 # Method with same signature as boto.s3.acl.ACL.add_user_grant(), to allow
167 # Class that represents a single (Scope, Permission) entry in an ACL.
198 raise InvalidAclError('Missing "%s" in "%s" part of ACL'
    [all...]
  /external/webrtc/webrtc/base/
win32filesystem.cc 76 // SECURITY_DESCRIPTOR specifying an ACL. This code is mostly based upon
119 // Compute size needed for an ACL that allows access to just this user.
120 int acl_size = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) - sizeof(DWORD) +
125 PACL acl = reinterpret_cast<PACL>(acl_bytes.get()); local
126 memset(acl, 0, acl_size);
127 if (!::InitializeAcl(acl, acl_size, ACL_REVISION)) {
133 if (!::AddAccessAllowedAce(acl,
149 // Put the ACL in it.
152 acl,

Completed in 712 milliseconds

1 2 3 4