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
76 * List of new permissions that have been added since 1.0.
77 * NOTE: These must be declared in SDK version order, with permissions
312 int N = p.permissions.size();
314 pi.permissions = new PermissionInfo[N];
316 pi.permissions[i] = generatePermissionInfo(p.permissions.get(i), flags);
1065 } else if (tagName.equals("adopt-permissions")) {
1340 owner.permissions.add(perm);
1386 owner.permissions
2728 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
547 * <p>Note that there are no permissions needed for an application to
549 * write permissions, or is not exported, all applications can still call
550 * 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
1793 /** Succeeds if any of the specified permissions are granted. */
1794 private void checkBinderPermission(String... permissions) { argument
1797 for (String perm : permissions) {
1806 String msg = "caller uid " + uid + " lacks any of " + TextUtils.join(",", permissions);
1908 * which is in the system. This means we don't need to protect it with permissions.
1939 * which is in the system. This means we don't need to protect it with permissions.

Completed in 132 milliseconds