Searched defs:permissions (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattDescriptor.java13 * See the License for the specific language governing permissions and
122 * @param permissions Permissions for this descriptor
124 public BluetoothGattDescriptor(UUID uuid, int permissions) { argument
125 initDescriptor(null, uuid, 0, permissions);
134 * @param permissions Permissions for this descriptor
137 int instance, int permissions) {
138 initDescriptor(characteristic, uuid, instance, permissions);
142 int instance, int permissions) {
146 mPermissions = permissions;
190 * Returns the permissions fo
136 BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, int instance, int permissions) argument
141 initDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, int instance, int permissions) argument
[all...]
H A DBluetoothGattCharacteristic.java13 * See the License for the specific language governing permissions and
189 * Characteristic permissions.
230 * @param permissions Permissions for this characteristic
232 public BluetoothGattCharacteristic(UUID uuid, int properties, int permissions) { argument
233 initCharacteristic(null, uuid, 0, properties, permissions);
242 int properties, int permissions) {
243 initCharacteristic(service, uuid, instanceId, properties, permissions);
248 int properties, int permissions) {
252 mPermissions = permissions;
349 * Returns the permissions fo
240 BluetoothGattCharacteristic(BluetoothGattService service, UUID uuid, int instanceId, int properties, int permissions) argument
246 initCharacteristic(BluetoothGattService service, UUID uuid, int instanceId, int properties, int permissions) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java13 * 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
157 * disable it. Currently all permissions are required.
263 dest.writeTypedArray(permissions, parcelableFlags);
304 permissions = source.createTypedArray(PermissionInfo.CREATOR);
H A DPackageParser.java13 * See the License for the specific language governing permissions and
109 * List of new permissions that have been added since 1.0.
110 * NOTE: These must be declared in SDK version order, with permissions
126 * List of permissions that have been split into more granular or dependent
127 * permissions.
426 int N = p.permissions.size();
428 pi.permissions = new PermissionInfo[N];
430 pi.permissions[i] = generatePermissionInfo(p.permissions.get(i), flags);
1292 } else if (tagName.equals("adopt-permissions")) {
3451 public final ArrayList<Permission> permissions = new ArrayList<Permission>(0); field in class:PackageParser.Package
[all...]
H A DPackageManager.java13 * See the License for the specific language governing permissions and
151 * permissions in the package in
152 * {@link PackageInfo#permissions}.
1333 * Extra field name for the list of permissions, which the user must approve.
1463 * Query for all of the permissions associated with a particular group.
1470 * find all of the permissions not associated with a group.
1472 * retrieve any meta-data associated with the permissions.
1475 * about all of the permissions in the given group.
1482 * permissions.
1667 * holding any of the given permissions
1695 getPackagesHoldingPermissions( String[] permissions, int flags) argument
1819 buildPermissionRequestIntent(String... permissions) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentProvider.java13 * See the License for the specific language governing permissions and
624 * @param permissions Array of path permission descriptions.
626 protected final void setPathPermissions(PathPermission[] permissions) { argument
627 mPathPermissions = permissions;
631 * Return the path-based permissions required for read and/or write access to
869 * <p>Note that there are no permissions needed for an application to
871 * write permissions, or is not exported, all applications can still call
872 * this method regardless of their access permissions. This allows them
1631 * individual permissions. Any implementation of this method <strong>must</strong>
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java13 * See the License for the specific language governing permissions and
153 public List<PackageInfo> getPackagesHoldingPermissions(String[] permissions, argument
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java13 * See the License for the specific language governing permissions and
441 String[] permissions, int flags) {
445 permissions, flags, userId);
440 getPackagesHoldingPermissions( String[] permissions, int flags) argument
/frameworks/base/services/java/com/android/server/accounts/
H A DAccountManagerService.java13 * See the License for the specific language governing permissions and
2624 /** Succeeds if any of the specified permissions are granted. */
2625 private void checkBinderPermission(String... permissions) { argument
2628 for (String perm : permissions) {
2637 String msg = "caller uid " + uid + " lacks any of " + TextUtils.join(",", permissions);
2791 * which is in the system. This means we don't need to protect it with permissions.
2826 * which is in the system. This means we don't need to protect it with permissions.
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java13 * See the License for the specific language governing permissions and
349 // Group-ids that are given to all packages as read from etc/permissions/*.xml.
353 // etc/permissions.xml file.
368 // etc/permissions.xml file.
376 // etc/permissions.xml file.
1395 * Otherwise, just revoke their system-level permissions.
1436 // cases get permissions that the user didn't initially explicitly
1443 + "; regranting permissions for internal storage");
1549 // Read permissions from .../etc/permission directory.
1550 File libraryDir = new File(Environment.getRootDirectory(), "etc/permissions");
3223 addPackageHoldingPermissions(ArrayList<PackageInfo> list, PackageSetting ps, String[] permissions, boolean[] tmp, int flags, int userId) argument
3262 getPackagesHoldingPermissions( String[] permissions, int flags, int userId) argument
[all...]

Completed in 118 milliseconds