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
157 * disable it. Currently all permissions are required.
254 dest.writeTypedArray(permissions, parcelableFlags);
292 permissions = source.createTypedArray(PermissionInfo.CREATOR);
H A DPackageParser.java13 * See the License for the specific language governing permissions and
107 * List of new permissions that have been added since 1.0.
108 * NOTE: These must be declared in SDK version order, with permissions
124 * List of permissions that have been split into more granular or dependent
125 * permissions.
408 int N = p.permissions.size();
410 pi.permissions = new PermissionInfo[N];
412 pi.permissions[i] = generatePermissionInfo(p.permissions.get(i), flags);
1025 /* Not supporting optional permissions ye
3173 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
457 * @param permissions Array of path permission descriptions.
459 protected final void setPathPermissions(PathPermission[] permissions) { argument
460 mPathPermissions = permissions;
464 * Return the path-based permissions required for read and/or write access to
664 * <p>Note that there are no permissions needed for an application to
666 * write permissions, or is not exported, all applications can still call
667 * 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
2178 /** Succeeds if any of the specified permissions are granted. */
2179 private void checkBinderPermission(String... permissions) { argument
2182 for (String perm : permissions) {
2191 String msg = "caller uid " + uid + " lacks any of " + TextUtils.join(",", permissions);
2323 * which is in the system. This means we don't need to protect it with permissions.
2358 * which is in the system. This means we don't need to protect it with permissions.

Completed in 3708 milliseconds