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

/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
230 dest.writeTypedArray(permissions, parcelableFlags);
267 permissions = source.createTypedArray(PermissionInfo.CREATOR);
H A DPackageParser.java13 * See the License for the specific language governing permissions and
89 * List of new permissions that have been added since 1.0.
90 * NOTE: These must be declared in SDK version order, with permissions
332 int N = p.permissions.size();
334 pi.permissions = new PermissionInfo[N];
336 pi.permissions[i] = generatePermissionInfo(p.permissions.get(i), flags);
1151 } else if (tagName.equals("adopt-permissions")) {
1428 owner.permissions.add(perm);
1475 owner.permissions
2933 public final ArrayList<Permission> permissions = new ArrayList<Permission>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/content/
H A DContentProvider.java13 * See the License for the specific language governing permissions and
412 * @param permissions Array of path permission descriptions.
414 protected final void setPathPermissions(PathPermission[] permissions) { argument
415 mPathPermissions = permissions;
419 * Return the path-based permissions required for read and/or write access to
550 * <p>Note that there are no permissions needed for an application to
552 * write permissions, or is not exported, all applications can still call
553 * this method regardless of their access permissions. This allows them
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java13 * See the License for the specific language governing permissions and
1925 /** Succeeds if any of the specified permissions are granted. */
1926 private void checkBinderPermission(String... permissions) { argument
1929 for (String perm : permissions) {
1938 String msg = "caller uid " + uid + " lacks any of " + TextUtils.join(",", permissions);
2042 * which is in the system. This means we don't need to protect it with permissions.
2075 * which is in the system. This means we don't need to protect it with permissions.

Completed in 83 milliseconds