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

1 2 3 4 5 6 7 8 91011>>

  /device/sample/frameworks/PlatformLibrary/
com.example.android.platform_library.xml 2 <permissions>
5 </permissions>
  /external/libpcap/ChmodBPF/
StartupParameters.plist 2 Description = "Change BPF permissions";
  /frameworks/base/core/java/android/content/pm/
package.html 5 permissions, services, signatures, and providers.
  /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...]
  /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...]
  /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/test/java/org/apache/harmony/security/tests/java/security/
Permissions2Test.java 14 * See the License for the specific language governing permissions and
29 import java.security.Permissions;
32 @TestTargetClass(Permissions.class)
47 * @tests java.security.Permissions#Permissions()
52 method = "Permissions",
56 // Test for method java.security.Permissions()
57 new Permissions();
61 * @tests java.security.Permissions#add(java.security.Permission)
71 // java.security.Permissions.add(java.security.Permission
    [all...]
  /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...]
  /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
android.hardware.audio.low_latency.xml 13 See the License for the specific language governing permissions and
20 <permissions>
22 </permissions>
android.hardware.camera.autofocus.xml 13 See the License for the specific language governing permissions and
18 <permissions>
21 </permissions>
android.hardware.camera.front.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.camera.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.location.gps.xml 13 See the License for the specific language governing permissions and
18 <permissions>
22 </permissions>
android.hardware.location.xml 13 See the License for the specific language governing permissions and
19 <permissions>
22 </permissions>
android.hardware.nfc.xml 13 See the License for the specific language governing permissions and
19 <permissions>
21 </permissions>
android.hardware.sensor.accelerometer.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.sensor.barometer.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.sensor.compass.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.sensor.gyroscope.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.sensor.light.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.sensor.proximity.xml 13 See the License for the specific language governing permissions and
18 <permissions>
20 </permissions>
android.hardware.telephony.cdma.xml 13 See the License for the specific language governing permissions and
18 <permissions>
21 </permissions>
  /libcore/luni/src/main/java/java/security/acl/
Acl.java 14 * See the License for the specific language governing permissions and
45 * <li>Permissions associated with an individual {@code Principal} always
46 * override permissions of the group(s) to which the individual belongs.</li>
48 * Principal}, then it is interpreted as an empty list of permissions.</li>
108 * Returns the set of allowed permissions for the specified {@code
114 * The allowed permissions are collected according to the following rules:
118 * permissions are the union of all group's positive permissions that the
119 * principal belongs to, the negative (denied) permissions are the union of
120 * all group's negative permissions that the principal belongs to. If
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoWifiStatePermissionTest.java 13 * See the License for the specific language governing permissions and
26 * Verify WifiManager related methods without specific Wifi state permissions.
42 * Verify that WifiManager#getWifiState() requires permissions.
56 * Verify that WifiManager#getConfiguredNetworks() requires permissions.
70 * Verify that WifiManager#getConnectionInfo() requires permissions.
84 * Verify that WifiManager#getScanResults() requires permissions.
98 * Verify that WifiManager#getDhcpInfo() requires permissions.
112 * Verify that WifiManager#disconnect() requires permissions.
126 * Verify that WifiManager#reconnect() requires permissions.
140 * Verify that WifiManager#reassociate() requires permissions
    [all...]

Completed in 1283 milliseconds

1 2 3 4 5 6 7 8 91011>>