HomeSort by relevance Sort by last modified time
    Searched refs:permissions (Results 1 - 25 of 2344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/tests/support/
Support_IOTestSecurityManager.java 14 * See the License for the specific language governing permissions and
26 private ArrayList<Permission> permissions; field in class:Support_IOTestSecurityManager
29 permissions = new ArrayList<Permission>(2);
30 permissions.add(new SerializablePermission("enableSubclassImplementation"));
31 permissions.add(new SerializablePermission("enableSubstitution"));
35 for (Iterator<Permission> i = permissions.iterator(); i.hasNext(); ) {
  /libcore/luni/src/main/java/java/security/
ProtectionDomain.java 14 * See the License for the specific language governing permissions and
21 * {@code ProtectionDomain} represents all permissions that are granted to a
34 // Static permissions for this ProtectionDomain
35 private PermissionCollection permissions; field in class:ProtectionDomain
44 // permissions, true otherwise.
49 * code source and the specified static permissions.
51 * If {@code permissions} is not {@code null}, the {@code permissions}
59 * If {@code permissions} is {@code null}, the method {@link
65 * @param permissions
    [all...]
UnresolvedPermissionCollection.java 14 * See the License for the specific language governing permissions and
46 new ObjectStreamField("permissions", Hashtable.class), };
100 * Returns true if this collection contains unresolved permissions
108 * Resolves all permissions of the same class as the specified target
110 * collection is {@code null} and some unresolved permissions were resolved,
112 * permissions are removed from this unresolved collection, and collection
116 * a kind of permissions to be resolved.
118 * an existing collection for storing resolved permissions.
119 * @return a collection containing resolved permissions (if any found)
154 Hashtable permissions = new Hashtable() local
171 Map permissions = (Map)fields.get("permissions", null); local
    [all...]
  /libcore/luni/src/main/java/java/io/
FilePermissionCollection.java 14 * See the License for the specific language governing permissions and
34 Vector<Permission> permissions = new Vector<Permission>(); field in class:FilePermissionCollection
61 permissions.addElement(permission);
68 * Returns an enumeration for the collection of permissions.
75 return permissions.elements();
79 * Indicates whether this permissions collection implies a specific
92 while (i < permissions.size()
95 matchedMask |= ((FilePermission) permissions.elementAt(i))
  /libcore/luni/src/main/java/org/apache/harmony/security/
PolicyEntry.java 14 * See the License for the specific language governing permissions and
37 * and a set of granted Permissions.
49 // Permissions collection
50 private final Collection<Permission> permissions; field in class:PolicyEntry
57 Collection<? extends Permission> permissions) {
61 this.permissions = (permissions == null || permissions.isEmpty()) ? null
62 : Collections.unmodifiableCollection(permissions);
108 * Returns unmodifiable collection of permissions defined by thi
    [all...]
DefaultPolicyScanner.java 14 * See the License for the specific language governing permissions and
183 * readPermissionEntries() method to read the permissions of this clause.
232 ge.permissions = readPermissionEntries(st);
304 Collection<PermissionEntry> permissions = new HashSet<PermissionEntry>(); local
336 permissions.add(pe);
355 return permissions;
442 public Collection<PermissionEntry> permissions; field in class:DefaultPolicyScanner.GrantEntry
  /frameworks/base/data/etc/
Android.mk 13 # See the License for the specific language governing permissions and
28 # This will install the file in /system/etc/permissions
30 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
45 # This will install the file in /system/etc/permissions
47 #LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 13 * See the License for the specific language governing permissions and
109 StringBuilder permissions = new StringBuilder("-rwxrwxrwx"); local
115 permissions.setCharAt(0, typeSymbols[i]);
124 permissions.setCharAt(1 + i, '-');
130 permissions.setCharAt(3, hasModeFlag(mode, S_IXUSR) ? 's' : 'S');
134 permissions.setCharAt(6, hasModeFlag(mode, S_IXGRP) ? 's' : 'S');
138 permissions.setCharAt(9, hasModeFlag(mode, S_IXOTH) ? 't' : 'T');
141 return permissions.toString();
  /libcore/luni/src/main/java/java/net/
SocketPermissionCollection.java 14 * See the License for the specific language governing permissions and
34 private Vector<Permission> permissions = new Vector<Permission>(); field in class:SocketPermissionCollection
50 permissions.addElement(permission);
53 // Returns an enumeration of the permissions
56 return permissions.elements();
72 int i = 0, count = permissions.size();
74 sp = (SocketPermission) permissions.elementAt(i);
  /libcore/luni/src/main/java/java/util/
PropertyPermissionCollection.java 14 * See the License for the specific language governing permissions and
34 Hashtable<String, Permission> permissions = new Hashtable<String, Permission>( field in class:PropertyPermissionCollection
40 Permission prev = permissions.put(perm.getName(), perm);
48 permissions.put(perm.getName(), np);
57 return permissions.elements();
71 * permissions with one representing a parent directory.
79 new ObjectStreamField("permissions", Hashtable.class),
84 fields.put("permissions", permissions);
93 permissions = (Hashtable<String, Permission>) fields.get
    [all...]
  /device/htc/passion-common/
passion.mk 13 # See the License for the specific language governing permissions and
23 frameworks/base/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
24 frameworks/base/data/etc/android.hardware.camera.flash-autofocus.xml:system/etc/permissions/android.hardware.camera.flash-autofocus.xml \
25 frameworks/base/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
26 frameworks/base/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
27 frameworks/base/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
28 frameworks/base/data/etc/android.hardware.sensor.proximity.xml:system/etc/permissions/android.hardware.sensor.proximity.xml \
29 frameworks/base/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
30 frameworks/base/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml \
31 frameworks/base/data/etc/android.hardware.touchscreen.multitouch.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.xm
    [all...]
  /frameworks/base/location/lib/
Android.mk 13 # See the License for the specific language governing permissions and
39 # This will install the file in /system/etc/permissions
41 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
  /libcore/luni/src/main/java/java/security/acl/
AclEntry.java 14 * See the License for the specific language governing permissions and
53 * The permissions in this ACL entry will be denied to the principal
98 * Returns the list of permissions of this ACL entry.
100 * @return the list of permissions of this ACL entry,
102 Enumeration<Permission> permissions(); method in interface:AclEntry
  /packages/wallpapers/LivePicker/
Android.mk 13 # See the License for the specific language governing permissions and
28 # This will install the file in /system/etc/permissions
30 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MutableSecurityManager.java 13 * See the License for the specific language governing permissions and
22 import java.security.Permissions;
38 this.enabled = new Permissions();
41 public MutableSecurityManager(Permission... permissions) {
43 for (int i = 0; i < permissions.length; i++) {
44 this.enabled.add(permissions[i]);
53 enabled = new Permissions();
  /device/samsung/crespo/
device.mk 12 # See the License for the specific language governing permissions and
110 frameworks/base/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
111 frameworks/base/data/etc/android.hardware.camera.flash-autofocus.xml:system/etc/permissions/android.hardware.camera.flash-autofocus.xml \
112 frameworks/base/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \
113 frameworks/base/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
114 frameworks/base/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
115 frameworks/base/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
116 frameworks/base/data/etc/android.hardware.sensor.proximity.xml:system/etc/permissions/android.hardware.sensor.proximity.xml \
117 frameworks/base/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
118 frameworks/base/data/etc/android.hardware.sensor.gyroscope.xml:system/etc/permissions/android.hardware.sensor.gyroscope.xml
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
AclEntryImpl.java 14 * See the License for the specific language governing permissions and
81 public Enumeration permissions() { method in class:AclEntryImpl
96 Enumeration enumeration = permissions();
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 13 * See the License for the specific language governing permissions and
131 public PermissionInfo[] permissions; field in class:PackageInfo
138 * all permissions requested, even those that were not granted or known
230 dest.writeTypedArray(permissions, parcelableFlags);
267 permissions = source.createTypedArray(PermissionInfo.CREATOR);
  /build/tools/apicheck/src/
Android.mk 12 # See the License for the specific language governing permissions and
  /build/tools/bin2asm/
Android.mk 12 # See the License for the specific language governing permissions and
  /build/tools/check_prereq/
Android.mk 12 # See the License for the specific language governing permissions and
  /build/tools/droiddoc/
Android.mk 12 # See the License for the specific language governing permissions and
  /build/tools/fs_config/
Android.mk 12 # See the License for the specific language governing permissions and
  /cts/
CtsHostLibraryList.mk 12 # See the License for the specific language governing permissions and
  /cts/tests/appsecurity-tests/test-apps/
Android.mk 12 # See the License for the specific language governing permissions and

Completed in 2961 milliseconds

1 2 3 4 5 6 7 8 91011>>