Lines Matching defs:permissions

13  * 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.
1682 * application that is holding any of the permissions that were provided.
1696 String[] permissions, int flags);
1758 * permissions to trees that were defined by either its own package or
1766 * any normal permissions that may be declared in any applications that
1769 * <p>New permissions must be added before
1770 * any .apks are installed that use those permissions. Permissions you
1799 * -- you are only allowed to remove permissions that you are allowed
1813 * which prompts the user to grant {@code permissions} to this application.
1816 * @throws NullPointerException if {@code permissions} is {@code null}.
1817 * @throws IllegalArgumentException if {@code permissions} contains {@code null}.
1819 public Intent buildPermissionRequestIntent(String... permissions) {
1820 if (permissions == null) {
1821 throw new NullPointerException("permissions cannot be null");
1823 for (String permission : permissions) {
1825 throw new IllegalArgumentException("permissions cannot contain null");
1830 i.putExtra(EXTRA_REQUEST_PERMISSION_PERMISSION_LIST, permissions);